Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

[Snyk] Fix for 41 vulnerabilities #35

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
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ source 'https://rubygems.org'

ruby File.read(File.join(__dir__, ".ruby-version"))

gem 'rails', '~> 5.1.4'
gem 'rails', '~> 7.1.0'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'sass-rails', '~> 5.0', '>= 5.0.8'
gem 'uglifier', '>= 1.3.0'
gem 'bootstrap', '~> 4.1.2'
gem 'cloudinary'

group :development, :test do
gem 'dotenv-rails'
gem 'dotenv-rails', '>= 2.7.6'
gem 'minitest-rails'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
end

group :development do
gem 'web-console', '>= 3.3.0'
gem 'web-console', '>= 4.0.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'spring-watcher-listen', '~> 2.1.0'
end

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