Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 1 vulnerabilities #192

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
source 'https://rubygems.org'

gem 'dotenv-rails' # Use dotenv to load environment variables
gem 'dotenv-rails' , '>= 3.0.0' # Use dotenv to load environment variables
gem 'excon-rails'
gem 'faraday', '~> 0.9.2' # simple http requests
gem 'ffi', '~> 1.9.24' # CVS-2018-1000201
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.12', '>= 2.12.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'newrelic_rpm', '~> 4.5' # NewRelic Application Performance Monitoring
gem 'pg', '~> 0.18' # Use postgresql as the database for Active Record
gem 'puma', '~> 4.3' # Use Puma as the app server
gem 'rails', '~> 5.2' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0', '>= 6.0.0' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'strong_migrations', '~> 0.3' # Catch unsafe migrations at dev time
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
Expand All @@ -24,7 +24,7 @@ gem 'strong_migrations', '~> 0.3' # Catch unsafe migrations at dev time
group :development, :test do
gem 'byebug', platform: :mri # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'rb-readline'
gem 'rspec-rails', '~> 3.5'
gem 'rspec-rails', '~> 4.0', '>= 4.0.0'
gem 'rubocop', '~> 1.19.0' # Enforce ruby code style
gem 'rubocop-rails', '~> 2.12'
gem 'rubocop-rspec', '~> 2.5'
Expand Down
Loading