Gemfile 4.1 KB

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