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 #35

Open
wants to merge 1 commit into
base: development
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
26 changes: 13 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
source 'https://rubygems.org'

gem 'rails', '~> 5.2.0'
gem 'rails', '~> 5.2.4', '>= 5.2.4.4'

# This is needed until upstream projects update their gemspecs
# This avoids a vulnerability in 3.7.1
gem 'sprockets', '3.7.2'

gem 'rack'
gem 'ransack'
gem 'ransack', '>= 1.8.8'
gem 'carrierwave'
gem 'pg', '~> 1.0.0'
gem 'rmagick', '~> 2.15.4'
gem 'simple_form', '~> 5.0.0'
gem 'simple_form', '~> 5.0.1'
gem 'redcarpet'
gem 'geocoder'
gem 'cancancan'
Expand All @@ -20,7 +20,7 @@ gem 'rqrcode'
gem 'vcardigan'

gem 'therubyracer'
gem 'jquery-turbolinks'
gem 'jquery-turbolinks', '>= 2.1.0'

source 'https://rails-assets.org' do
gem 'rails-assets-datetimepicker'
Expand All @@ -39,10 +39,10 @@ gem 'paper_trail'
gem 'cocoon'

group :test, :development do
gem 'dotenv-rails'
gem 'dotenv-rails', '>= 2.4.0'
gem 'thin'
gem 'rspec-rails'
gem "factory_bot_rails", "~> 4.0"
gem 'rspec-rails', '>= 3.7.2'
gem "factory_bot_rails", "~> 4.8", ">= 4.8.2"
gem 'capybara'
# Use selenium and chrome for handling JS automated testing
gem 'selenium-webdriver'
Expand All @@ -53,7 +53,7 @@ group :test, :development do
gem 'letter_opener'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'meta_request', '>= 0.6.0'
gem 'database_cleaner', '1.0.1'
gem 'test-unit'
gem 'pry'
Expand All @@ -63,7 +63,7 @@ end

group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
gem 'web-console', '~> 3.6', '>= 3.6.1'

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
Expand All @@ -85,18 +85,18 @@ group :test do
gem 'shoulda-matchers'
gem 'simplecov'
gem 'puma'
gem 'rails-controller-testing'
gem 'rails-controller-testing', '>= 1.0.2'
# Allows you to freeze time during tests
gem 'timecop'
end

gem 'sass-rails'
gem 'sass-rails', '>= 5.0.7'
gem 'uglifier', '>= 1.0.3'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.2'

# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-rails', '>= 4.3.3'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
Expand All @@ -106,5 +106,5 @@ gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jquery-ui-rails'
gem 'jquery-ui-rails', '>= 6.0.1'
gem 'bootstrap-sass', '3.3.7'
Loading