Gemfile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. gem 'database_cleaner'
  26. # Using unreleased rspec version (since we're using Rails v6.0.0.beta3)
  27. # The following refs were the latest commits on their respective master
  28. # branches
  29. gem 'rspec-support', github: "rspec/rspec-support", ref: "b2389"
  30. gem 'rspec-expectations', github: "rspec/rspec-expectations", ref: "8d630"
  31. gem 'rspec-mocks', github: "rspec/rspec-mocks", ref: "f1b69"
  32. gem 'rspec-core', github: "rspec/rspec-core", :ref => "4a29a"
  33. gem 'rspec-rails', github: "rspec/rspec-rails", branch: "4-0-dev"
  34. end
  35. group :development do
  36. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  37. gem 'web-console', '>= 3.3.0'
  38. gem 'listen', '>= 3.0.5', '< 3.2'
  39. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  40. gem 'spring'
  41. gem 'spring-watcher-listen', '~> 2.0.0'
  42. end
  43. group :test do
  44. # Adds support for Capybara system testing and selenium driver
  45. gem 'capybara', '>= 2.15'
  46. gem 'selenium-webdriver'
  47. # Easy installation and use of chromedriver to run system tests with Chrome
  48. gem 'chromedriver-helper'
  49. end
  50. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  51. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]