Gemfile 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 'pry-rails'
  23. gem 'rails-controller-testing'
  24. gem 'factory_bot_rails'
  25. gem 'faker'
  26. gem 'database_cleaner'
  27. # Using unreleased rspec version (since we're using Rails v6.0.0.beta3)
  28. # The following refs were the latest commits on their respective master
  29. # branches
  30. gem 'rspec-support', github: "rspec/rspec-support", ref: "b2389"
  31. gem 'rspec-expectations', github: "rspec/rspec-expectations", ref: "8d630"
  32. gem 'rspec-mocks', github: "rspec/rspec-mocks", ref: "f1b69"
  33. gem 'rspec-core', github: "rspec/rspec-core", :ref => "4a29a"
  34. gem 'rspec-rails', github: "rspec/rspec-rails", branch: "4-0-dev"
  35. end
  36. group :development do
  37. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  38. gem 'web-console', '>= 3.3.0'
  39. gem 'listen', '>= 3.0.5', '< 3.2'
  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 'chromedriver-helper'
  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]