Gemfile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. source 'https://rubygems.org'
  2. ruby '2.4.1'
  3. gem 'rails', '5.1.4'
  4. gem 'rails-observers'
  5. gem 'activerecord-session_store'
  6. # Bundle edge Rails instead:
  7. #gem 'rails', :git => 'git://github.com/rails/rails.git'
  8. gem 'json'
  9. # Supported DBs
  10. gem 'activerecord-nulldb-adapter', group: :nulldb
  11. gem 'mysql2', group: :mysql
  12. gem 'pg', group: :postgres
  13. group :assets do
  14. gem 'sass-rails' #, github: 'rails/sass-rails'
  15. gem 'coffee-rails'
  16. gem 'coffee-script-source'
  17. gem 'sprockets'
  18. gem 'uglifier'
  19. gem 'eco'
  20. end
  21. gem 'autoprefixer-rails'
  22. gem 'doorkeeper'
  23. gem 'oauth2'
  24. gem 'omniauth'
  25. gem 'omniauth-oauth2'
  26. gem 'omniauth-facebook'
  27. gem 'omniauth-github'
  28. gem 'omniauth-gitlab'
  29. gem 'omniauth-google-oauth2'
  30. gem 'omniauth-linkedin-oauth2'
  31. gem 'omniauth-twitter'
  32. gem 'omniauth-microsoft-office365'
  33. gem 'omniauth-weibo-oauth2'
  34. gem 'twitter'
  35. gem 'telegramAPI'
  36. gem 'koala'
  37. gem 'mail'
  38. gem 'valid_email2'
  39. gem 'htmlentities'
  40. gem 'mime-types'
  41. gem 'biz'
  42. gem 'composite_primary_keys'
  43. gem 'delayed_job_active_record'
  44. gem 'daemons'
  45. gem 'simple-rss'
  46. # e. g. on linux we need a javascript execution
  47. gem 'libv8'
  48. gem 'execjs'
  49. gem 'therubyracer'
  50. require 'erb'
  51. require 'yaml'
  52. gem 'net-ldap'
  53. # password security
  54. gem 'argon2'
  55. gem 'writeexcel'
  56. gem 'icalendar'
  57. gem 'icalendar-recurrence'
  58. gem 'browser'
  59. # integrations
  60. gem 'slack-notifier'
  61. gem 'clearbit'
  62. gem 'zendesk_api'
  63. gem 'viewpoint'
  64. gem 'rubyntlm', git: 'https://github.com/wimm/rubyntlm.git'
  65. gem 'autodiscover', git: 'https://github.com/thorsteneckel/autodiscover.git'
  66. # event machine
  67. gem 'eventmachine'
  68. gem 'em-websocket'
  69. gem 'diffy'
  70. # Gems used only for develop/test and not required
  71. # in production environments by default.
  72. group :development, :test do
  73. gem 'rspec-rails'
  74. gem 'test-unit'
  75. gem 'spring'
  76. gem 'spring-commands-rspec'
  77. gem 'sqlite3'
  78. # code coverage
  79. gem 'simplecov'
  80. gem 'simplecov-rcov'
  81. gem 'coveralls', require: false
  82. # UI tests w/ Selenium
  83. gem 'selenium-webdriver', '2.53.4'
  84. # livereload on template changes (html, js, css)
  85. gem 'guard', require: false
  86. gem 'guard-livereload', require: false
  87. gem 'rack-livereload'
  88. gem 'rb-fsevent', require: false
  89. # auto symlinking
  90. gem 'guard-symlink', require: false
  91. # code QA
  92. gem 'pre-commit'
  93. gem 'rubocop'
  94. gem 'coffeelint'
  95. # changelog generation
  96. gem 'github_changelog_generator'
  97. # Setting ENV for testing purposes
  98. gem 'figaro'
  99. # Use Factory Girl for generating random test data
  100. gem 'factory_girl_rails'
  101. # mock http calls
  102. gem 'webmock'
  103. end
  104. gem 'puma', group: :puma
  105. gem 'unicorn', group: :unicorn
  106. # load onw gem's
  107. local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
  108. if File.exist?(local_gemfile)
  109. eval_gemfile local_gemfile
  110. end