Gemfile 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. source 'https://rubygems.org'
  2. # core - base
  3. ruby '2.5.5'
  4. gem 'rails', '5.2.3'
  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', 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'
  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-twitter'
  60. gem 'omniauth-weibo-oauth2'
  61. # channels
  62. gem 'koala'
  63. gem 'telegramAPI'
  64. gem 'twitter', git: 'https://github.com/sferik/twitter.git'
  65. # channels - email additions
  66. gem 'htmlentities'
  67. gem 'mail', git: 'https://github.com/zammad-deps/mail', branch: '2-7-stable'
  68. gem 'mime-types'
  69. gem 'rchardet', '>= 1.8.0'
  70. gem 'valid_email2'
  71. # feature - business hours
  72. gem 'biz'
  73. # feature - signature diffing
  74. gem 'diffy'
  75. # feature - excel output
  76. gem 'writeexcel'
  77. # feature - device logging
  78. gem 'browser'
  79. # feature - iCal export
  80. gem 'icalendar'
  81. gem 'icalendar-recurrence'
  82. # feature - phone number formatting
  83. gem 'telephone_number'
  84. # feature - SMS
  85. gem 'twilio-ruby'
  86. # feature - ordering
  87. gem 'acts_as_list'
  88. # integrations
  89. gem 'clearbit'
  90. gem 'net-ldap'
  91. gem 'slack-notifier'
  92. gem 'zendesk_api'
  93. # integrations - exchange
  94. gem 'autodiscover', git: 'https://github.com/zammad-deps/autodiscover'
  95. gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm'
  96. gem 'viewpoint'
  97. # image processing
  98. gem 'rszr', '0.5.2'
  99. # Gems used only for develop/test and not required
  100. # in production environments by default.
  101. group :development, :test do
  102. # app boottime improvement
  103. gem 'spring'
  104. gem 'spring-commands-rspec'
  105. gem 'spring-commands-testunit'
  106. # debugging
  107. gem 'byebug'
  108. gem 'pry-rails'
  109. gem 'pry-remote'
  110. gem 'pry-rescue'
  111. gem 'pry-stack_explorer'
  112. # test frameworks
  113. gem 'rails-controller-testing'
  114. gem 'rspec-rails'
  115. gem 'shoulda-matchers'
  116. gem 'test-unit'
  117. # test DB
  118. gem 'sqlite3'
  119. # code coverage
  120. gem 'coveralls', require: false
  121. gem 'simplecov'
  122. gem 'simplecov-rcov'
  123. # UI tests w/ Selenium
  124. gem 'capybara'
  125. gem 'selenium-webdriver'
  126. # livereload on template changes (html, js, css)
  127. gem 'guard', require: false
  128. gem 'guard-livereload', require: false
  129. gem 'rack-livereload', require: false
  130. gem 'rb-fsevent', require: false
  131. # auto symlinking
  132. gem 'guard-symlink', require: false
  133. # code QA
  134. gem 'coffeelint'
  135. gem 'pre-commit'
  136. gem 'rubocop'
  137. gem 'rubocop-performance'
  138. gem 'rubocop-rails'
  139. gem 'rubocop-rspec'
  140. # changelog generation
  141. gem 'github_changelog_generator'
  142. # generate random test data
  143. gem 'factory_bot_rails'
  144. gem 'faker'
  145. # mock http calls
  146. gem 'webmock'
  147. # record and replay TCP/HTTP transactions
  148. gem 'tcr', git: 'https://github.com/zammad-deps/tcr'
  149. gem 'vcr'
  150. # handle deprecations in core and addons
  151. gem 'deprecation_toolkit'
  152. end
  153. # Want to extend Zammad with additional gems?
  154. # ZAMMAD USERS: Specify them in Gemfile.local
  155. # (That way, you can customize the Gemfile
  156. # without having your changes overwritten during upgrades.)
  157. # ZAMMAD DEVS: Consult the internal wiki
  158. # (or else risk pushing unwanted changes to Gemfile.lock!)
  159. # https://git.znuny.com/zammad/zammad/wikis/Tips#user-content-customizing-the-gemfile
  160. eval_gemfile 'Gemfile.local' if File.exist?('Gemfile.local')