| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # frozen_string_literal: true
- source 'https://rubygems.org'
- git_source(:github) { |repo| "https://github.com/#{repo}.git" }
- ruby '2.6.3'
- gem 'bootsnap', '>= 1.4.1', require: false
- gem 'listen', '>= 3.0.5', '< 3.2' # requirement of bootsnap
- gem 'graphql'
- gem 'haml'
- gem 'pg'
- gem 'puma', '~> 4.2'
- gem 'rails', '~> 6.0.0'
- gem 'rest-client', require: false
- gem 'sass-rails', '~> 6.0'
- gem 'webpacker'
- # Use Redis adapter to run Action Cable in production
- # gem 'redis', '~> 4.0'
- # Use Active Model has_secure_password
- # gem 'bcrypt', '~> 3.1.7'
- # Use Active Storage variant
- # gem 'image_processing', '~> 1.2'
- group :development, :test do
- gem 'brakeman'
- gem 'bundle-audit'
- gem 'database_cleaner'
- gem 'dotenv-rails'
- gem 'factory_bot_rails'
- gem 'faker'
- gem 'graphiql-rails'
- gem 'pry'
- gem 'pry-rails'
- gem 'rails-controller-testing'
- gem 'rubocop', '~> 0.75.0', require: false
- gem 'rubocop-performance'
- gem 'shoulda-matchers'
- gem 'rspec-rails', github: 'rspec/rspec-rails', tag: 'v4.0.0.beta2'
- end
- group :development do
- # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
- gem 'web-console', '>= 4.0.1'
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
- gem 'spring'
- gem 'spring-watcher-listen', '~> 2.0.0'
- end
- group :test do
- gem 'capybara', '>= 2.15'
- gem 'selenium-webdriver'
- gem 'simplecov', require: false
- gem 'webdrivers', require: false
- end
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
- gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|