Gemfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # frozen_string_literal: true
  2. source 'https://rubygems.org'
  3. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  4. ruby '2.6.3'
  5. gem 'bootsnap', '>= 1.4.1', require: false
  6. gem 'listen', '>= 3.0.5', '< 3.2' # requirement of bootsnap
  7. gem 'graphql'
  8. gem 'haml', github: 'haml/haml', ref: '75011'
  9. gem 'pg'
  10. gem 'puma', '~> 3.11'
  11. gem 'rails', '~> 6.0.0.rc1'
  12. gem 'rest-client', require: false
  13. gem 'sass-rails', '~> 5.0'
  14. gem 'webpacker'
  15. # Use Redis adapter to run Action Cable in production
  16. # gem 'redis', '~> 4.0'
  17. # Use Active Model has_secure_password
  18. # gem 'bcrypt', '~> 3.1.7'
  19. # Use Active Storage variant
  20. # gem 'image_processing', '~> 1.2'
  21. group :development, :test do
  22. gem 'database_cleaner'
  23. gem 'dotenv-rails'
  24. gem 'factory_bot_rails'
  25. gem 'faker'
  26. gem 'graphiql-rails'
  27. gem 'pry'
  28. gem 'pry-rails'
  29. gem 'rails-controller-testing'
  30. gem 'rubocop', '~> 0.71.0', require: false
  31. gem 'rubocop-performance'
  32. gem 'shoulda-matchers'
  33. gem 'rspec-rails', github: 'rspec/rspec-rails', tag: 'v4.0.0.beta2'
  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. # 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. gem 'capybara', '>= 2.15'
  44. gem 'selenium-webdriver'
  45. gem 'simplecov', require: false
  46. gem 'webdrivers'
  47. end
  48. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  49. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]