Gemfile 1.1 KB

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