Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pschloss committed Oct 11, 2022
1 parent bcde6c8 commit d52c2aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ aws_info
scratch
.DS_Store

Gemfile.lock
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.7.2'
#ruby '3.1.2'

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
Expand All @@ -18,7 +18,7 @@ gem 'will_paginate-bootstrap4', '~> 0.1.2'
gem 'bootstrap', '~> 4.3.1'
gem 'jquery-ui-rails'
gem 'filterrific', '~> 2.1', '>= 2.1.2'
gem "puma", ">= 4.3.8"
gem "puma", "~> 4.3.9"
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
Expand All @@ -31,7 +31,7 @@ gem 'loofah', '~>2.3.1'
gem 'bootsnap', require: false

group :development, :test do
gem 'sqlite3', '1.3.12'
gem 'sqlite3', '~> 1.3', '>= 1.3.11'
gem 'byebug', '9.0.6', platform: :mri
end

Expand All @@ -44,5 +44,5 @@ group :development do
end

group :production do
gem 'pg'
gem 'pg', '~> 1.4', '>= 1.4.4'
end

0 comments on commit d52c2aa

Please sign in to comment.