Gemfile 1.2 KB

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