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 6 vulnerabilities #38

Open
wants to merge 1 commit into
base: devise
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
12 changes: 6 additions & 6 deletions Gemfile
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
source 'https://rubygems.org'

#don't upgrade
gem 'rails', '4.2.5'
gem 'rails', '6.1.7.1'

ruby '2.2.4'

# Authentication gem
gem 'devise'
gem 'devise', '>= 4.7.0'

# Bundle edge Rails instead:
# gem 'rails', github: 'rails/rails'
Expand Down Expand Up @@ -52,16 +52,16 @@ end

# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
gem 'coffee-rails'
gem 'sass-rails', '>= 5.0.8'
gem 'coffee-rails', '>= 4.2.2'
gem 'jquery-fileupload-rails'
gem 'uglifier'
gem 'turbolinks' # New for Rails 4.0

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

gem 'jquery-rails'
gem 'jquery-rails', '>= 4.1.1'

# To use ActiveModel has_secure_password
gem 'bcrypt'
Expand Down Expand Up @@ -90,7 +90,7 @@ gem 'execjs'
gem 'therubyracer'

# Add SMTP server support using MailCatcher
gem 'mailcatcher'
gem 'mailcatcher', '>= 0.6.5'

#For Rails 4.0
#group :doc do
Expand Down