Gemfile 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. source 'https://rubygems.org'
  2. # core - base
  3. ruby '2.5.5'
  4. gem 'rails', '5.2.4.1'
  5. # core - rails additions
  6. gem 'activerecord-import'
  7. gem 'activerecord-session_store'
  8. gem 'bootsnap', require: false
  9. gem 'composite_primary_keys'
  10. gem 'json'
  11. gem 'rails-observers'
  12. # core - application servers
  13. gem 'puma', '~>3.12', group: :puma
  14. gem 'unicorn', group: :unicorn
  15. # core - supported ORMs
  16. gem 'activerecord-nulldb-adapter', group: :nulldb
  17. gem 'mysql2', '0.4.10', group: :mysql
  18. gem 'pg', '0.21.0', group: :postgres
  19. # core - asynchrous task execution
  20. gem 'daemons'
  21. gem 'delayed_job_active_record'
  22. # core - websocket
  23. gem 'em-websocket'
  24. gem 'eventmachine'
  25. # core - password security
  26. gem 'argon2'
  27. # core - state machine
  28. gem 'aasm'
  29. # performance - Memcached
  30. gem 'dalli'
  31. # asset handling - coffee-script
  32. gem 'coffee-rails'
  33. gem 'coffee-script-source'
  34. # asset handling - frontend templating
  35. gem 'eco'
  36. # asset handling - SASS
  37. gem 'sassc-rails'
  38. # asset handling - pipeline
  39. gem 'sprockets', '~> 3.7.2'
  40. gem 'uglifier'
  41. gem 'autoprefixer-rails'
  42. # asset handling - javascript execution for e.g. linux
  43. gem 'execjs'
  44. gem 'libv8'
  45. gem 'mini_racer'
  46. # authentication - provider
  47. gem 'doorkeeper'
  48. gem 'oauth2'
  49. # authentication - third party
  50. gem 'omniauth-rails_csrf_protection'
  51. # authentication - third party providers
  52. gem 'omniauth-facebook'
  53. gem 'omniauth-github'
  54. gem 'omniauth-gitlab'
  55. gem 'omniauth-google-oauth2'
  56. gem 'omniauth-linkedin-oauth2'
  57. gem 'omniauth-microsoft-office365'
  58. gem 'omniauth-oauth2'
  59. gem 'omniauth-saml'
  60. gem 'omniauth-twitter'
  61. gem 'omniauth-weibo-oauth2'
  62. # channels
  63. gem 'koala'
  64. gem 'telegramAPI'
  65. gem 'twitter', git: 'https://github.com/sferik/twitter.git'
  66. # channels - email additions
  67. gem 'htmlentities'
  68. gem 'mail', git: 'https://github.com/zammad-deps/mail', branch: '2-7-stable'
  69. gem 'mime-types'
  70. gem 'rchardet', '>= 1.8.0'
  71. gem 'valid_email2'
  72. # feature - business hours
  73. gem 'biz'
  74. # feature - signature diffing
  75. gem 'diffy'
  76. # feature - excel output
  77. gem 'writeexcel'
  78. # feature - device logging
  79. gem 'browser'
  80. # feature - iCal export
  81. gem 'icalendar'
  82. gem 'icalendar-recurrence'
  83. # feature - phone number formatting
  84. gem 'telephone_number'
  85. # feature - SMS
  86. gem 'twilio-ruby'
  87. # feature - ordering
  88. gem 'acts_as_list'
  89. # integrations
  90. gem 'clearbit'
  91. gem 'net-ldap'
  92. gem 'slack-notifier'
  93. gem 'zendesk_api'
  94. # integrations - exchange
  95. gem 'autodiscover', git: 'https://github.com/zammad-deps/autodiscover'
  96. gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm'
  97. gem 'viewpoint'
  98. # image processing
  99. gem 'rszr', '0.5.2'
  100. # Gems used only for develop/test and not required
  101. # in production environments by default.
  102. group :development, :test do
  103. # app boottime improvement
  104. gem 'spring'
  105. gem 'spring-commands-rspec'
  106. gem 'spring-commands-testunit'
  107. # debugging
  108. gem 'byebug'
  109. gem 'pry-rails'
  110. gem 'pry-remote'
  111. gem 'pry-rescue'
  112. gem 'pry-stack_explorer'
  113. # test frameworks
  114. gem 'rails-controller-testing'
  115. gem 'rspec-rails'
  116. gem 'shoulda-matchers'
  117. gem 'test-unit'
  118. # code coverage
  119. gem 'coveralls', require: false
  120. gem 'simplecov'
  121. gem 'simplecov-rcov'
  122. # UI tests w/ Selenium
  123. gem 'capybara'
  124. gem 'selenium-webdriver'
  125. # livereload on template changes (html, js, css)
  126. gem 'guard', require: false
  127. gem 'guard-livereload', require: false
  128. gem 'rack-livereload', require: false
  129. gem 'rb-fsevent', require: false
  130. # auto symlinking
  131. gem 'guard-symlink', require: false
  132. # code QA
  133. gem 'coffeelint'
  134. gem 'pre-commit'
  135. gem 'rubocop'
  136. gem 'rubocop-performance'
  137. gem 'rubocop-rails'
  138. gem 'rubocop-rspec'
  139. # changelog generation
  140. gem 'github_changelog_generator'
  141. # generate random test data
  142. gem 'factory_bot_rails'
  143. gem 'faker'
  144. # mock http calls
  145. gem 'webmock'
  146. # record and replay TCP/HTTP transactions
  147. gem 'tcr', git: 'https://github.com/zammad-deps/tcr'
  148. gem 'vcr'
  149. # handle deprecations in core and addons
  150. gem 'deprecation_toolkit'
  151. end
  152. # Want to extend Zammad with additional gems?
  153. # ZAMMAD USERS: Specify them in Gemfile.local
  154. # (That way, you can customize the Gemfile
  155. # without having your changes overwritten during upgrades.)
  156. # ZAMMAD DEVS: Consult the internal wiki
  157. # (or else risk pushing unwanted changes to Gemfile.lock!)
  158. # https://git.znuny.com/zammad/zammad/wikis/Tips#user-content-customizing-the-gemfile
  159. eval_gemfile 'Gemfile.local' if File.exist?('Gemfile.local')