Gemfile 3.8 KB

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