Skip to content

Commit

Permalink
fix: Gemfile to reduce vulnerabilities
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
  • Loading branch information
snyk-bot committed Oct 8, 2023
1 parent aeb284f commit 294905d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

gem 'rails', '~> 6.1.7', '>= 6.1.7.2'
gem 'rails', '~> 7.1.0'
gem 'rake', '~>12.3.0'
gem 'bootsnap', '~>1.5.0'

Expand All @@ -12,15 +12,15 @@ gem 'sqlite3', '~> 1.4.0'

# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 5.0.8'
gem 'sass-rails', '~> 6.0.0'
gem 'coffee-rails', '~> 5.0.0'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '~> 0.12.3', :platforms => :ruby

gem 'uglifier', '>= 4.2.0'

gem 'jquery-rails', '~> 4.4.0'
gem 'jquery-rails', '~> 4.5.0'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'jquery-datatables-rails', '~> 3.4.0'
gem "RedCloth", '~> 4.3.2'
Expand All @@ -30,7 +30,7 @@ gem "test-unit", '~> 3.3.8'
gem "recaptcha", '~> 5.6.0'
gem "custom_error_message", '~> 1.1.1'
gem "aasm", '~> 5.1.1'
gem "devise", "~> 4.8.0"
gem "devise", "~> 4.9.0"
gem "devise-encryptable", "~> 0.2.0"
gem 'font-awesome-rails', '~> 4.7.0.8'
gem 'auto_strip_attributes', '~> 2.6.0'
Expand Down Expand Up @@ -66,8 +66,8 @@ gem 'capistrano-rvm', '~> 0.1.2'


group :development, :test do
gem 'rspec-rails', '~> 4.0.2'
gem 'factory_bot_rails', '~> 5.0.2'
gem 'rspec-rails', '~> 4.1.0'
gem 'factory_bot_rails', '~> 5.1.0'
gem 'foreman', '~> 0.87.2'
gem 'capistrano-rails', '~> 1.1.6', require: false
gem 'capistrano-bundler', '~> 1.1.4', require: false
Expand All @@ -76,12 +76,12 @@ end

group :test do
gem 'faker', '~> 2.22.0'
gem 'capybara', '~> 2.18.0'
gem 'capybara', '~> 3.0.0'
gem 'capybara-screenshot', '>= 1.0.26'
gem 'guard-rspec', '~> 4.7.3'
gem 'launchy', '~> 2.5.0'
gem 'selenium-webdriver', '~> 3.142.7'
gem 'cucumber-rails', '~> 2.2.0', require: false
gem 'cucumber-rails', '~> 2.3.0', require: false
gem 'simplecov', '~> 0.18.5', require: false
gem 'database_cleaner', '~> 1.8.5'
gem 'email_spec', '~> 2.2.0'
Expand Down

0 comments on commit 294905d

Please sign in to comment.