fix: Gemfile to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-RUBY-WEBSOCKETEXTENSIONS-570830
This commit is contained in:
snyk-bot 2020-06-03 05:09:46 +00:00
parent b53ffd40af
commit 1d49b1b2e5
1 changed files with 3 additions and 3 deletions

View File

@ -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.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
@ -30,13 +30,13 @@ gem 'bootsnap', '>= 1.1.0', require: false
# Authentication # Authentication
gem 'devise' gem 'devise'
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'