From 751558a53d1923297cbe52b023745be69489bdb0 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 12 May 2021 03:45:08 +0000 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-1290051 - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-1290052 --- Gemfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index cf5415e..f2752a0 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,7 @@ end # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' -gem 'rails', '~> 5.0.2' +gem 'rails', '~> 5.2.4', '>= 5.2.4.6' # Use postgresql as the database for Active Record gem 'pg', '~> 0.18' # Use Puma as the app server @@ -30,12 +30,12 @@ gem 'figaro' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platform: :mri - gem 'rspec-rails', '~> 3.5' + gem 'rspec-rails', '~> 3.5', '>= 3.5.2' # Rubocop static analyzer gem 'rubocop', '~> 0.47.1', require: false gem 'rubocop-rspec', require: false gem 'faker' - gem 'factory_girl_rails' + gem 'factory_girl_rails', '>= 4.8.0' end group :development do