Gemfile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 'puma', '~> 3.11'
  7. gem 'sass-rails', '~> 5.0'
  8. gem 'uglifier', '>= 1.3.0'
  9. gem 'coffee-rails', '~> 4.2'
  10. gem 'turbolinks', '~> 5'
  11. gem 'jbuilder', '~> 2.5'
  12. gem 'bootsnap', '>= 1.1.0', require: false
  13. group :development, :test do
  14. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  15. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  16. end
  17. group :development do
  18. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  19. gem 'web-console', '>= 3.3.0'
  20. gem 'listen', '>= 3.0.5', '< 3.2'
  21. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  22. gem 'spring'
  23. gem 'spring-watcher-listen', '~> 2.0.0'
  24. end
  25. group :test do
  26. # Adds support for Capybara system testing and selenium driver
  27. gem 'capybara', '>= 2.15'
  28. gem 'selenium-webdriver'
  29. # Easy installation and use of chromedriver to run system tests with Chrome
  30. gem 'chromedriver-helper'
  31. end
  32. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]