fix: Gemfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-569599 - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-569600 - https://snyk.io/vuln/SNYK-RUBY-ACTIONVIEW-569601 - https://snyk.io/vuln/SNYK-RUBY-ACTIVESTORAGE-569602 - https://snyk.io/vuln/SNYK-RUBY-ACTIVESUPPORT-569598
This commit is contained in:
parent
b53ffd40af
commit
a82302e68d
16
Gemfile
16
Gemfile
|
|
@ -6,7 +6,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
ruby '2.6.2'
|
ruby '2.6.2'
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '~> 5.2.1'
|
gem 'rails', '~> 5.2.4', '>= 5.2.4.3'
|
||||||
# Use sqlite3 as the database for Active Record
|
# Use sqlite3 as the database for Active Record
|
||||||
gem 'sqlite3'
|
gem 'sqlite3'
|
||||||
# Use Puma as the app server
|
# Use Puma as the app server
|
||||||
|
|
@ -29,16 +29,16 @@ gem 'bootsnap', '>= 1.1.0', require: false
|
||||||
# gem 'rack-cors'
|
# gem 'rack-cors'
|
||||||
|
|
||||||
# Authentication
|
# Authentication
|
||||||
gem 'devise'
|
gem 'devise', '>= 4.7.1'
|
||||||
gem 'devise_token_auth'
|
gem 'devise_token_auth', '>= 1.1.3'
|
||||||
|
|
||||||
gem 'rack-cors'
|
gem 'rack-cors'
|
||||||
|
|
||||||
# Interactors
|
# Interactors
|
||||||
gem 'interactor'
|
gem 'interactor'
|
||||||
gem 'interactor-rails'
|
gem 'interactor-rails', '>= 2.2.1'
|
||||||
|
|
||||||
gem 'active_model_serializers'
|
gem 'active_model_serializers', '>= 0.10.10'
|
||||||
|
|
||||||
gem 'mailgun-ruby'
|
gem 'mailgun-ruby'
|
||||||
|
|
||||||
|
|
@ -46,10 +46,10 @@ group :development, :test do
|
||||||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
||||||
gem 'byebug', platforms: %i[mri mingw x64_mingw]
|
gem 'byebug', platforms: %i[mri mingw x64_mingw]
|
||||||
gem 'coveralls', require: false
|
gem 'coveralls', require: false
|
||||||
gem 'factory_bot_rails'
|
gem 'factory_bot_rails', '>= 5.1.1'
|
||||||
gem 'faker'
|
gem 'faker'
|
||||||
gem 'rspec-rails'
|
gem 'rspec-rails', '>= 3.9.0'
|
||||||
gem 'shoulda-matchers'
|
gem 'shoulda-matchers', '>= 4.1.2'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue