Skip to content

Commit 9f818aa

Browse files
committed
fix: Gemfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-RACK-13378928 - https://snyk.io/vuln/SNYK-RUBY-RACK-13378930 - https://snyk.io/vuln/SNYK-RUBY-RACK-13378932
1 parent 0479329 commit 9f818aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ group :development, :test do
3535
gem 'rake'
3636
# Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the
3737
# environment is development
38-
gem 'rspec-rails'
38+
gem 'rspec-rails', '>= 6.0.4'
3939
gem 'rspec-rerun'
4040
# Required during CI as well local development
4141
gem 'rubocop'
@@ -44,7 +44,7 @@ end
4444
group :test do
4545
# automatically include factories from spec/factories
4646
gem 'test-prof'
47-
gem 'factory_bot_rails'
47+
gem 'factory_bot_rails', '>= 6.3.0'
4848
# Make rspec output shorter and more useful
4949
gem 'fivemat'
5050
# rspec formatter for acceptance tests

0 commit comments

Comments
 (0)