From 32b1ccde548ec996dd58f8f46953bdf0525fb6f4 Mon Sep 17 00:00:00 2001 From: "snyk-io[bot]" <141718529+snyk-io[bot]@users.noreply.github.com> Date: Tue, 7 Oct 2025 23:32:08 +0000 Subject: [PATCH] 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 --- Gemfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile b/Gemfile index 193831b..e427d1a 100644 --- a/Gemfile +++ b/Gemfile @@ -6,30 +6,30 @@ git_source(:github) do |repo_name| end -gem 'rails', '~> 5.1.4' +gem 'rails', '~> 5.1.5' gem 'sqlite3' gem 'puma', '~> 3.7' -gem 'sass-rails', '~> 5.0' +gem 'sass-rails', '~> 5.0', '>= 5.0.8' gem 'uglifier', '>= 1.3.0' -gem 'coffee-rails', '~> 4.2' +gem 'coffee-rails', '~> 5.0', '>= 5.0.0' gem 'turbolinks', '~> 5' gem 'jbuilder', '~> 2.5' -gem 'devise' +gem 'devise', '>= 4.4.1' gem 'omniauth-salesloft' -gem 'omniauth' +gem 'omniauth', '>= 1.9.0' gem 'foreman' gem 'rake' gem 'dotenv-rails' group :development, :test do gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] - gem 'capybara', '~> 2.13' + gem 'capybara', '~> 2.18', '>= 2.18.0' gem 'selenium-webdriver' gem 'pry-rails' end group :development do - gem 'web-console', '>= 3.3.0' + gem 'web-console', '>= 3.6.0' gem 'listen', '>= 3.0.5', '< 3.2' gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0'