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 41 vulnerabilities #336

Open
wants to merge 1 commit into
base: main
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 @@ -6,31 +6,31 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 2.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.4'
gem 'rails', '~> 6.1.7', '>= 6.1.7.3'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem 'puma', '~> 5.4'
gem 'puma', '~> 5.6', '>= 5.6.4'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
gem 'sass-rails', '>= 6.0.0'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.4'
gem 'webpacker', '~> 5.4', '>= 5.4.0'
# 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.11'
gem 'jbuilder', '~> 2.11', '>= 2.11.2'

# Reduces boot times through caching; required in config/boot.rb

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'

gem 'rails-controller-testing'

# Use jquery as the JavaScript library
gem 'jquery-rails'

gem 'bootstrap', '~> 5.0'
gem 'bootstrap', '~> 5.0', '>= 5.0.1'
# Use bootstrap themes
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'

Expand All @@ -46,23 +46,23 @@ group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]

gem 'dotenv-rails', '~> 2.7'
gem 'dotenv-rails', '~> 2.7', '>= 2.7.6'
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.7'
gem 'web-console', '>= 3.3.0'
gem 'web-console', '>= 4.1.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'

gem 'overcommit', '~> 0.58.0', require: false
gem 'rubocop', '~> 1.18.4', require: false
gem 'rubocop-rails', '~> 2.11', require: false
gem 'rubocop-rails', '~> 2.11', '>= 2.11.3', require: false
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

gem 'twilio-ruby', '~> 5.57'
gem 'twilio-ruby', '~> 5.57', '>= 5.57.1'