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 vulnerable dependencies #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
22 changes: 11 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'sass-rails', '~> 5.0', '>= 5.0.6'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
Expand All @@ -18,9 +18,9 @@ gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

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

gem 'slim-rails'
gem 'slim-rails', '>= 3.1.1'
gem 'twilio-ruby'
gem 'omniauth', '~> 1.3.1'
gem 'omniauth-auth0', '~> 1.4.2'
Expand All @@ -35,17 +35,17 @@ group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
# Use RSpec for specs
gem 'rspec-rails', '~>3.5.0'
gem 'rspec-rails', '~> 3.5.2'
# Use Factory Girl for generating random test data
gem 'factory_girl_rails'
gem 'rails-controller-testing'
gem 'factory_girl_rails', '>= 4.7.0'
gem 'rails-controller-testing', '>= 1.0.1'
# Shim to load environment variables from .env into ENV
gem 'dotenv-rails', :groups => [:development, :test]
gem 'dotenv-rails', '>= 2.1.1', :groups => [:development, :test]
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'web-console', '>= 3.3.1'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
Expand All @@ -54,11 +54,11 @@ group :development do
end

group :test do
gem 'cucumber-rails', :require => false
gem 'cucumber-rails', '>= 1.4.5', :require => false
# database_cleaner is not required, but highly recommended
gem 'database_cleaner'
gem 'capybara'
gem 'poltergeist'
gem 'capybara', '>= 2.10.1'
gem 'poltergeist', '>= 1.11.0'
gem 'rack-test'
gem 'simplecov', require: false
end
Expand Down
Loading