Gemfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 'pry'
  20. gem 'rspec-rails'
  21. gem 'rails-controller-testing'
  22. gem 'factory_bot_rails'
  23. gem 'faker'
  24. end
  25. group :development do
  26. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  27. gem 'web-console', '>= 3.3.0'
  28. gem 'listen', '>= 3.0.5', '< 3.2'
  29. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  30. gem 'spring'
  31. gem 'letter_opener'
  32. gem 'spring-watcher-listen', '~> 2.0.0'
  33. end
  34. group :test do
  35. # Adds support for Capybara system testing and selenium driver
  36. gem 'capybara', '>= 2.15'
  37. gem 'selenium-webdriver'
  38. # Easy installation and use of chromedriver to run system tests with Chrome
  39. gem 'chromedriver-helper'
  40. end
  41. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  42. gem 'mini_racer', platforms: :ruby