Skip to content

Commit 4496c02

Browse files
committed
Update gems
1 parent d5bcf9e commit 4496c02

12 files changed

+640
-243
lines changed

Gemfile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby '2.7.2'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7-
gem 'rails', '~> 5.2.6'
7+
gem 'rails'
88
# Use postgresql as the database for Active Record
9-
gem 'pg', '>= 0.18', '< 2.0'
9+
gem 'pg'
1010
# Use Puma as the app server
11-
gem 'puma', '~> 3.11'
11+
gem 'puma'
1212
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
1313
# gem 'jbuilder', '~> 2.5'
1414
# Use Redis adapter to run Action Cable in production
@@ -23,7 +23,7 @@ gem 'puma', '~> 3.11'
2323
# gem 'capistrano-rails', group: :development
2424

2525
# Reduces boot times through caching; required in config/boot.rb
26-
gem 'bootsnap', '>= 1.1.0', require: false
26+
gem 'bootsnap'
2727

2828
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
2929
gem 'rack-cors'
@@ -42,8 +42,6 @@ gem 'newrelic_rpm'
4242
group :development, :test do
4343
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
4444
gem 'byebug', platforms: %i[mri mingw x64_mingw]
45-
gem 'factory_bot_rails'
46-
gem 'rspec-rails'
4745
end
4846

4947
group :development do
@@ -54,5 +52,10 @@ group :development do
5452
gem 'spring-watcher-listen', '~> 2.0.0'
5553
end
5654

55+
group :test do
56+
gem 'factory_bot_rails'
57+
gem 'rspec-rails'
58+
end
59+
5760
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
5861
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

0 commit comments

Comments
 (0)