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

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
34 changes: 17 additions & 17 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source 'https://rubygems.org'
# Ruby version
ruby '2.6.0'
# Rails version
gem 'rails', '~> 5.2'
gem 'rails', '~> 5.2', '>= 5.2.3'
# Use postgres as database
gem 'pg'
# Use Puma as the app server
Expand All @@ -20,25 +20,25 @@ gem 'bootsnap', require: false
### VIEWS, ASSETS, FRONTEND STUFF

# Use SCSS for stylesheets
gem 'sassc-rails'
gem 'sassc-rails', '>= 2.1.2'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use jQuery
gem 'jquery-rails'
gem 'jquery-rails', '>= 4.4.0'
# Turbolinks makes following links in your web application faster.
# Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'jquery-turbolinks', '>= 2.1.0'
# Use Bootstrap, the CSS framework (getbootstrap.com)
gem 'bootstrap'
gem 'bootstrap', '>= 4.3.1'
# Javascript interpreter
# therubyracer contains too old JS runtime
# gem 'therubyracer', platforms: :ruby
gem 'mini_racer', platforms: :ruby

group :development do
# Favicon set
gem 'rails_real_favicon', '>= 0.0.7'
gem 'rails_real_favicon', '>= 0.1.0'
# Generate Entity-Relationship Diagram
gem 'rails-erd', require: false
end
Expand All @@ -48,17 +48,17 @@ end
### UTILITIES

# Environment variables
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'dotenv-rails', '>= 2.7.5', require: 'dotenv/rails-now'
# Mailgun
gem 'mailgun-ruby', '~> 1.2.0'
# Excel (XLSX) importing
gem 'axlsx_rails'
gem 'axlsx_rails', '>= 0.6.1'
# Axlsx dependency
gem 'rubyzip', '>= 1.2.1'
# Axlsx dependency
gem 'caxlsx'
gem 'caxlsx', '>= 3.0.1'
# Force loofah update
gem 'loofah', '>= 2.3.1'
gem 'loofah', '>= 2.5.0'

group :test do
# Test coverage
Expand All @@ -69,7 +69,7 @@ group :development do
# Annotates model with schema
gem 'annotate'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
gem 'web-console', '>= 3.7.0'
gem 'listen'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
Expand All @@ -83,15 +83,15 @@ group :development, :test do
# debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Rspec testing framework
gem 'rspec-rails'
gem 'rspec-rails', '>= 4.0.1'
# Factory bot: factories for testing
gem 'factory_bot_rails'
gem 'factory_bot_rails', '>= 6.1.0'
# Shoulda Matchers: matchers for testing -- experimental gem for Rails 5
gem 'shoulda-matchers', '~> 4.3'
# Trace routes
gem 'traceroute'
gem 'traceroute', '>= 0.8.1'
# For assert_template (check if view is rendered)
gem 'rails-controller-testing'
gem 'rails-controller-testing', '>= 1.0.4'
end

### END UTILITIES
Expand All @@ -117,7 +117,7 @@ group :development, :production do
# Database profiler
gem 'rack-mini-profiler'
# Auto-email exceptions
gem 'exception_notification'
gem 'exception_notification', '>= 4.4.0'
end

group :production do
Expand All @@ -130,7 +130,7 @@ end
### SECURITY

# Adds authentication
gem 'devise'
gem 'devise', '>= 4.7.1'
# Adds roles
gem 'rolify'
# Adds privileges
Expand Down