Load rspec-rails gem in test + development (#25768)

This commit is contained in:
Matt Jankowski 2023-07-28 17:17:35 -04:00 committed by GitHub
parent 7581b1ff96
commit 8ac9e446df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,9 +99,6 @@ gem 'rdf-normalize', '~> 0.5'
gem 'private_address_check', '~> 0.5'
group :test do
# RSpec runner for rails
gem 'rspec-rails', '~> 6.0'
# Used to split testing into chunks in CI
gem 'rspec_chunked', '~> 0.6'
@ -187,6 +184,11 @@ group :development, :test do
gem 'test-prof'
end
group :development, :test do
# RSpec runner for rails
gem 'rspec-rails', '~> 6.0'
end
group :production do
gem 'lograge', '~> 0.12'
end