Gemfile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.6.2'
  4. gem 'bootsnap', '>= 1.4.1', require: false
  5. gem 'haml'
  6. gem 'jbuilder', '~> 2.5'
  7. gem 'pg'
  8. gem 'puma', '~> 3.11'
  9. gem 'rails', '~> 6.0.0.beta3'
  10. gem 'rest-client', require: false
  11. gem 'sass-rails', '~> 5.0'
  12. gem 'webpacker'
  13. # Use Redis adapter to run Action Cable in production
  14. # gem 'redis', '~> 4.0'
  15. # Use Active Model has_secure_password
  16. # gem 'bcrypt', '~> 3.1.7'
  17. # Use Active Storage variant
  18. # gem 'image_processing', '~> 1.2'
  19. group :development, :test do
  20. gem 'dotenv-rails'
  21. gem 'pry'
  22. gem 'rails-controller-testing'
  23. gem 'factory_bot_rails'
  24. gem 'faker'
  25. # Using unreleased rspec version (since we're using Rails v6.0.0.beta3)
  26. # The following refs were the latest commits on their respective master
  27. # branches
  28. gem 'rspec-support', github: "rspec/rspec-support", ref: "b2389"
  29. gem 'rspec-expectations', github: "rspec/rspec-expectations", ref: "8d630"
  30. gem 'rspec-mocks', github: "rspec/rspec-mocks", ref: "f1b69"
  31. gem 'rspec-core', github: "rspec/rspec-core", :ref => "4a29a"
  32. gem 'rspec-rails', github: "rspec/rspec-rails", branch: "4-0-dev"
  33. end
  34. group :development do
  35. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  36. gem 'web-console', '>= 3.3.0'
  37. gem 'listen', '>= 3.0.5', '< 3.2'
  38. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  39. gem 'spring'
  40. gem 'spring-watcher-listen', '~> 2.0.0'
  41. end
  42. group :test do
  43. # Adds support for Capybara system testing and selenium driver
  44. gem 'capybara', '>= 2.15'
  45. gem 'selenium-webdriver'
  46. # Easy installation and use of chromedriver to run system tests with Chrome
  47. gem 'chromedriver-helper'
  48. end
  49. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  50. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]