Skip to content

Commit

Permalink
fix: Gemfile to reduce vulnerabilities (#319)
Browse files Browse the repository at this point in the history
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-RUBY-RACK-1061917
- https://snyk.io/vuln/SNYK-RUBY-REXML-6861566

Co-authored-by: snyk-bot <[email protected]>
Co-authored-by: Jesus Federico <[email protected]>
  • Loading branch information
3 people authored Jun 14, 2024
1 parent 5e4555c commit 81cbdb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ group :development, :test do
gem 'rspec'
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~> 5.1.0'
gem 'rubocop', '~> 1.54', require: false
gem 'rubocop-rails', '~> 2.24', '>= 2.24.1', require: false
gem 'rubocop', '~> 1.63', '>= 1.63.0', require: false
gem 'rubocop-rails', '~> 2.25', '>= 2.25.0', require: false
end

group :development do
Expand All @@ -65,15 +65,15 @@ end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.40.0' # , '>= 2.15', '< 4.0'
gem 'selenium-webdriver'
gem 'selenium-webdriver', '>= 4.11.0'
# Easy installation and use of chromedriver to run system tests with Chrome
# gem 'chromedriver-helper'
gem 'database_cleaner-active_record'
gem 'factory_bot_rails', '>= 6.4.3'
gem 'faker'
gem 'rails-controller-testing'
gem 'webdrivers'
gem 'webmock'
gem 'webmock', '>= 3.20.0'
end

group :production do
Expand Down

0 comments on commit 81cbdb6

Please sign in to comment.