Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #311

Open
wants to merge 1 commit into
base: main
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
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby ' ~> 3.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3'
gem 'rails', '~> 7.1.0'
# Use postgresql as the database for Active Record
gem 'sqlite3'
# Use Puma as the app server
Expand All @@ -18,22 +18,22 @@ gem 'bcrypt', '~> 3.1.7'

gem 'uglifier'
gem 'sass-rails'
gem 'jquery-rails'
gem 'jquery-rails', '>= 4.5.0'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false

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 'dotenv-rails'
gem 'factory_bot_rails'
gem "rspec-rails", "~> 4.0"
gem 'dotenv-rails', '>= 2.8.0'
gem 'factory_bot_rails', '>= 6.2.0'
gem "rspec-rails", "~> 4.1", ">= 4.1.0"
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
gem 'web-console', '>= 4.2.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
Expand Down
Loading