Gemfile 1.7 KB

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