Gemfile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 'rubocop-rails'
  35. gem 'rubocop-rspec'
  36. gem 'shoulda-matchers'
  37. gem 'rspec-rails', github: 'rspec/rspec-rails', tag: 'v4.0.0.beta2'
  38. end
  39. group :development do
  40. # Access an interactive console on exception pages or by calling 'console'
  41. # anywhere in the code.
  42. gem 'web-console', '>= 4.0.1'
  43. # Spring speeds up development by keeping your application running in the
  44. # background. Read more: https://github.com/rails/spring
  45. gem 'spring'
  46. gem 'spring-watcher-listen', '~> 2.0.0'
  47. end
  48. group :test do
  49. gem 'capybara', '>= 2.15'
  50. gem 'selenium-webdriver'
  51. gem 'simplecov', require: false
  52. gem 'webdrivers', require: false
  53. end
  54. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  55. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]