# 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 'haml' gem 'jbuilder', '~> 2.5' gem 'pg' gem 'puma', '~> 3.11' gem 'rails', '~> 6.0.0.beta3' 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 'pry' gem 'pry-rails' gem 'rails-controller-testing' gem 'rubocop', '~> 0.67.2', require: false gem 'rubocop-performance' # Using unreleased rspec version (since we're using Rails v6.0.0.beta3) # The following refs were the latest commits on their respective master # branches gem 'rspec-core', github: 'rspec/rspec-core', ref: '4a29a' gem 'rspec-expectations', github: 'rspec/rspec-expectations', ref: '8d630' gem 'rspec-mocks', github: 'rspec/rspec-mocks', ref: 'f1b69' gem 'rspec-rails', github: 'rspec/rspec-rails', branch: '4-0-dev' gem 'rspec-support', github: 'rspec/rspec-support', ref: 'b2389' 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 # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of chromedriver to run system tests with Chrome 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]