Gemfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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'
  9. gem 'pg'
  10. gem 'puma', '~> 4.2'
  11. gem 'rails', '~> 6.0.0'
  12. gem 'redis'
  13. gem 'rest-client', require: false
  14. gem 'sass-rails', '~> 6.0'
  15. gem 'webpacker'
  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 'brakeman'
  22. gem 'bundle-audit'
  23. gem 'database_cleaner'
  24. gem 'dotenv-rails'
  25. gem 'factory_bot_rails'
  26. gem 'faker'
  27. gem 'graphiql-rails'
  28. gem 'pry'
  29. gem 'pry-rails'
  30. gem 'rails-controller-testing'
  31. gem 'rubocop', '~> 0.75.0', require: false
  32. gem 'rubocop-performance'
  33. gem 'rubocop-rails'
  34. gem 'rubocop-rspec'
  35. gem 'shoulda-matchers'
  36. gem 'rspec-rails', github: 'rspec/rspec-rails', tag: 'v4.0.0.beta2'
  37. end
  38. group :development do
  39. # Access an interactive console on exception pages or by calling 'console'
  40. # anywhere in the code.
  41. gem 'web-console', '>= 4.0.1'
  42. # Spring speeds up development by keeping your application running in the
  43. # background. Read more: https://github.com/rails/spring
  44. gem 'spring'
  45. gem 'spring-watcher-listen', '~> 2.0.0'
  46. end
  47. group :test do
  48. gem 'capybara', '>= 2.15'
  49. gem 'selenium-webdriver'
  50. gem 'simplecov', require: false
  51. gem 'webdrivers', require: false
  52. end
  53. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  54. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]