| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 'dotenv-rails'
- gem 'pry'
- gem 'pry-rails'
- gem 'rails-controller-testing'
- gem 'factory_bot_rails'
- gem 'faker'
- gem 'database_cleaner'
- # 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-support', github: "rspec/rspec-support", ref: "b2389"
- gem 'rspec-expectations', github: "rspec/rspec-expectations", ref: "8d630"
- gem 'rspec-mocks', github: "rspec/rspec-mocks", ref: "f1b69"
- gem 'rspec-core', github: "rspec/rspec-core", :ref => "4a29a"
- gem 'rspec-rails', github: "rspec/rspec-rails", branch: "4-0-dev"
- 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: [:mingw, :mswin, :x64_mingw, :jruby]
|