Gemfile 2.0 KB

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