Gemfile 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. source 'https://rubygems.org'
  2. # core - base
  3. ruby '2.4.4'
  4. gem 'rails', '5.1.6.1'
  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', group: :mysql
  17. gem 'pg', 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'
  26. # performance - Memcached
  27. gem 'dalli'
  28. # asset handling
  29. group :assets do
  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 'sass-rails'
  37. # asset handling - pipeline
  38. gem 'sprockets'
  39. gem 'uglifier'
  40. end
  41. gem 'autoprefixer-rails'
  42. # asset handling - javascript execution for e.g. linux
  43. gem 'execjs'
  44. gem 'libv8'
  45. gem 'therubyracer'
  46. # authentication - provider
  47. gem 'doorkeeper'
  48. gem 'oauth2'
  49. # authentication - third party
  50. gem 'omniauth'
  51. gem 'omniauth-facebook'
  52. gem 'omniauth-github'
  53. gem 'omniauth-gitlab'
  54. gem 'omniauth-google-oauth2'
  55. gem 'omniauth-linkedin-oauth2'
  56. gem 'omniauth-microsoft-office365'
  57. gem 'omniauth-oauth2'
  58. gem 'omniauth-twitter'
  59. gem 'omniauth-weibo-oauth2'
  60. # channels
  61. gem 'koala'
  62. gem 'telegramAPI'
  63. gem 'twitter'
  64. # channels - email additions
  65. gem 'htmlentities'
  66. gem 'mail', '2.6.6'
  67. gem 'mime-types'
  68. gem 'rchardet', '>= 1.8.0'
  69. gem 'valid_email2'
  70. # feature - business hours
  71. gem 'biz'
  72. # feature - signature diffing
  73. gem 'diffy'
  74. # feature - excel output
  75. gem 'writeexcel'
  76. # feature - device logging
  77. gem 'browser'
  78. # feature - iCal export
  79. gem 'icalendar'
  80. gem 'icalendar-recurrence'
  81. # feature - phone number formatting
  82. gem 'telephone_number'
  83. # feature - SMS
  84. gem 'twilio-ruby'
  85. # integrations
  86. gem 'clearbit'
  87. gem 'net-ldap'
  88. gem 'slack-notifier'
  89. gem 'zendesk_api'
  90. # integrations - exchange
  91. gem 'autodiscover', git: 'https://github.com/zammad-deps/autodiscover'
  92. gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm'
  93. gem 'viewpoint'
  94. # Gems used only for develop/test and not required
  95. # in production environments by default.
  96. group :development, :test do
  97. # app boottime improvement
  98. gem 'spring'
  99. gem 'spring-commands-rspec'
  100. gem 'spring-commands-testunit'
  101. # debugging
  102. gem 'byebug'
  103. gem 'pry-rails'
  104. gem 'pry-remote'
  105. gem 'pry-rescue'
  106. gem 'pry-stack_explorer'
  107. # test frameworks
  108. gem 'rspec-rails'
  109. gem 'test-unit'
  110. # test DB
  111. gem 'sqlite3'
  112. # code coverage
  113. gem 'coveralls', require: false
  114. gem 'simplecov'
  115. gem 'simplecov-rcov'
  116. # UI tests w/ Selenium
  117. gem 'selenium-webdriver'
  118. # livereload on template changes (html, js, css)
  119. gem 'guard', require: false
  120. gem 'guard-livereload', require: false
  121. gem 'rack-livereload', require: false
  122. gem 'rb-fsevent', require: false
  123. # auto symlinking
  124. gem 'guard-symlink', require: false
  125. # code QA
  126. gem 'coffeelint'
  127. gem 'pre-commit'
  128. gem 'rubocop'
  129. # changelog generation
  130. gem 'github_changelog_generator'
  131. # Use Factory Bot for generating random test data
  132. gem 'factory_bot_rails'
  133. # mock http calls
  134. gem 'webmock'
  135. # record and replay TCP/HTTP transactions
  136. gem 'tcr', git: 'https://github.com/zammad-deps/tcr'
  137. gem 'vcr'
  138. end
  139. # Want to extend Zammad with additional gems?
  140. # ZAMMAD USERS: Specify them in Gemfile.local
  141. # (That way, you can customize the Gemfile
  142. # without having your changes overwritten during upgrades.)
  143. # ZAMMAD DEVS: Consult the internal wiki
  144. # (or else risk pushing unwanted changes to Gemfile.lock!)
  145. # https://git.znuny.com/zammad/zammad/wikis/Tips#user-content-customizing-the-gemfile
  146. eval_gemfile 'Gemfile.local' if File.exist?('Gemfile.local')