Gemfile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 'jbuilder', '~> 2.5'
  10. gem 'pg'
  11. gem 'puma', '~> 3.11'
  12. gem 'rails', '~> 6.0.0.rc1'
  13. gem 'rest-client', require: false
  14. gem 'sass-rails', '~> 5.0'
  15. gem 'webpacker'
  16. # Use Redis adapter to run Action Cable in production
  17. # gem 'redis', '~> 4.0'
  18. # Use Active Model has_secure_password
  19. # gem 'bcrypt', '~> 3.1.7'
  20. # Use Active Storage variant
  21. # gem 'image_processing', '~> 1.2'
  22. group :development, :test do
  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.67.2', require: false
  32. gem 'rubocop-performance'
  33. gem 'shoulda-matchers'
  34. # Using unreleased rspec version (since we're using Rails v6.0.0.beta3)
  35. # The following refs were the latest commits on their respective master
  36. # branches
  37. gem 'rspec-core', github: 'rspec/rspec-core', ref: '4a29a'
  38. gem 'rspec-expectations', github: 'rspec/rspec-expectations', ref: '8d630'
  39. gem 'rspec-mocks', github: 'rspec/rspec-mocks', ref: 'f1b69'
  40. gem 'rspec-rails', github: 'rspec/rspec-rails', branch: '4-0-dev'
  41. gem 'rspec-support', github: 'rspec/rspec-support', ref: 'b2389'
  42. end
  43. group :development do
  44. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  45. gem 'web-console', '>= 3.3.0'
  46. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  47. gem 'spring'
  48. gem 'spring-watcher-listen', '~> 2.0.0'
  49. end
  50. group :test do
  51. gem 'capybara', '>= 2.15'
  52. gem 'selenium-webdriver'
  53. gem 'simplecov', require: false
  54. gem 'webdrivers'
  55. end
  56. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  57. gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]