Gemfile 1.1 KB

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