| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # 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', github: 'haml/haml', ref: '75011'
- gem 'pg'
- gem 'puma', '~> 3.11'
- gem 'rails', '~> 6.0.0.rc1'
- gem 'rest-client', require: false
- gem 'sass-rails', '~> 5.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 '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.67.2', 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', '>= 3.3.0'
- # 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'
- end
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
- gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|