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

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
24 changes: 12 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.0'

# FOUNDATION
gem 'rails', '6'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'rails', '6.0.1'
gem 'dotenv-rails', '>= 2.7.6', require: 'dotenv/rails-now'
gem 'pg', '>= 0.18', '< 2.0'
gem 'coffee-rails', '~> 4.2'
gem 'webpacker'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
gem 'webpacker', '>= 4.2.1'

# PERFORMANCE
gem 'bootsnap', '>= 1.1.0', require: false
gem 'dalli'
gem 'memcachier'
gem 'turbolinks', '~> 5'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5.0'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'sinatra', :require => nil # for sidekiq UI
gem 'sidekiq-status'
Expand All @@ -27,25 +27,25 @@ gem 'redis-namespace'

# TOOLS
gem "sentry-raven"
gem 'devise'
gem 'devise', '>= 4.7.2'
gem 'jbuilder'
gem 'rack-cors', :require => 'rack/cors'
gem 'postmark-rails'
gem 'postmark-rails', '>= 0.21.0'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'letter_opener'
gem 'rspec-rails', '~> 3.6.0'
gem "factory_bot_rails", "~> 4.10.0"
gem 'rspec-rails', '~> 3.7.0'
gem "factory_bot_rails", "~> 4.11.0"
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'rename'
gem 'rename', '>= 1.0.8'
gem "better_errors"
gem "binding_of_caller"
gem 'web-console', '>= 3.3.0'
gem 'web-console', '>= 4.0.2'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
Expand All @@ -55,7 +55,7 @@ end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'capybara', '>= 3.32.1'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper'
Expand Down