Gemfile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.6.0'
  4. gem 'bootsnap', '>= 1.1.0', require: false
  5. gem 'devise'
  6. gem 'haml'
  7. gem 'jbuilder', '~> 2.5'
  8. gem 'pg'
  9. gem 'puma', '~> 3.11'
  10. gem 'rails', '~> 5.2.2'
  11. gem 'react_on_rails', '11.2.2'
  12. gem 'recaptcha'
  13. gem 'rest-client'
  14. gem 'sass-rails', '~> 5.0'
  15. gem 'semantic-ui-sass'
  16. gem 'uglifier', '>= 1.3.0'
  17. gem 'webpacker'
  18. group :development, :test do
  19. gem 'dotenv-rails'
  20. gem 'pry'
  21. gem 'rspec-rails'
  22. gem 'rails-controller-testing'
  23. gem 'factory_bot_rails'
  24. gem 'faker'
  25. end
  26. group :development do
  27. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  28. gem 'web-console', '>= 3.3.0'
  29. gem 'listen', '>= 3.0.5', '< 3.2'
  30. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  31. gem 'spring'
  32. gem 'letter_opener'
  33. gem 'spring-watcher-listen', '~> 2.0.0'
  34. end
  35. group :test do
  36. # Adds support for Capybara system testing and selenium driver
  37. gem 'capybara', '>= 2.15'
  38. gem 'selenium-webdriver'
  39. # Easy installation and use of chromedriver to run system tests with Chrome
  40. gem 'chromedriver-helper'
  41. end
  42. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  43. gem 'mini_racer', platforms: :ruby