Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ gem 'faraday'
gem 'faraday_middleware'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
gem 'rails', '~> 6.1', '>= 6.1.4.2'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 5.4'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.4'
gem 'webpacker', '~> 5.4', '>= 5.4.3'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
Expand All @@ -31,25 +31,25 @@ gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.2', require: false

group :development, :test do
gem 'dotenv-rails'
gem 'dotenv-rails', '>= 2.8.0'
gem 'listen'
gem 'pry', '0.14.1'
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'
gem 'web-console', '>= 4.2.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

group :test do
gem 'capybara'
gem 'capybara', '>= 3.36.0'
gem 'factory_bot'
gem 'faker', git: 'https://github.com/faker-ruby/faker.git', branch: 'master'
gem 'fuubar'
gem 'rspec-rails', '~> 5.1.0'
gem 'rspec-rails', '~> 6.0.0'
gem 'simplecov', '0.17.1', require: false # CC last supported v0.17
gem 'vcr'
gem 'webdrivers'
Expand Down
Loading