Gemfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 'rest-client', require: false
  13. gem 'sass-rails', '~> 6.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 'brakeman'
  23. gem 'bundle-audit'
  24. gem 'database_cleaner'
  25. gem 'dotenv-rails'
  26. gem 'factory_bot_rails'
  27. gem 'faker'
  28. gem 'graphiql-rails'
  29. gem 'pry'
  30. gem 'pry-rails'
  31. gem 'rails-controller-testing'
  32. gem 'rubocop', '~> 0.75.0', require: false
  33. gem 'rubocop-performance'
  34. gem 'shoulda-matchers'
  35. gem 'rspec-rails', github: 'rspec/rspec-rails', tag: 'v4.0.0.beta2'
  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', '>= 4.0.1'
  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. gem 'capybara', '>= 2.15'
  46. gem 'selenium-webdriver'
  47. gem 'simplecov', require: false
  48. gem 'webdrivers', require: false
  49. end
  50. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  51. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]