Gemfile 4.5 KB

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