Gemfile 1.2 KB

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