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 8 vulnerabilities #87

Open
wants to merge 1 commit into
base: master
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
22 changes: 11 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.3'

gem 'activestorage', '~> 5.2.6', '>= 5.2.6.3'
gem 'activestorage', '~> 6.1.7', '>= 6.1.7.1'
gem 'aws-sdk-s3'
gem 'binding_of_caller', '~> 0.8.0'
gem 'bootstrap', '~> 4.3.1'
gem 'devise', '~> 4.7', '>= 4.7.1'
gem 'devise', '~> 4.7', '>= 4.7.2'
gem 'faker', '~> 1.6', '>= 1.6.3'
gem 'figaro', '~> 1.1', '>= 1.1.1'
gem 'font-awesome-rails', '>= 4.7.0.5'
gem 'font-awesome-rails', '>= 4.7.0.6'
gem 'image_processing', '~> 1.9', '>= 1.9.3'
gem 'jquery-rails', '~> 4.4', '>= 4.4.0'
gem 'omniauth-facebook', '>= 5.0.0'
gem 'omniauth-facebook', '>= 6.0.0'
gem 'popper_js', '~> 1.14', '>= 1.14.5'
gem 'sprockets-rails', '~> 3.2.1'
gem 'sprockets-rails', '~> 3.2.2'
gem 'will_paginate', '~> 3.2'
gem 'will_paginate-bootstrap', '~> 1.0', '>= 1.0.2'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.6', '>= 5.2.6.3'
gem 'rails', '~> 6.1.7', '>= 6.1.7.1'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1', '>= 1.1.4'
# Use Puma as the app server
Expand All @@ -37,7 +37,7 @@ gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jbuilder', '~> 2.9', '>= 2.9.1'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
Expand Down Expand Up @@ -69,23 +69,23 @@ end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.29.0'
gem 'capybara', '>= 3.32.2'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'guard', '2.13.0'
gem 'guard-minitest', '2.4.4'
gem 'minitest'
gem 'minitest-reporters', '1.1.14'
gem 'rails-controller-testing', '1.0.2'
gem 'rails-controller-testing', '1.0.3'
gem 'shoulda-matchers', '~> 4.1', '>= 4.1.2'
gem 'webdrivers', '~> 4.1', '>= 4.1.2'
end

group :development, :test do
gem 'factory_bot_rails', '~> 5.1', '>= 5.1.1'
gem 'factory_bot_rails', '~> 5.2', '>= 5.2.0'
gem 'guard-livereload'
gem 'guard-rspec'
gem 'rspec-rails', '~> 3.9', '>= 3.9.0'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Expand Down