Skip to content

Commit 8ed26de

Browse files

File tree

2 files changed

+162
-151
lines changed

2 files changed

+162
-151
lines changed

Gemfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby "~> 3.1"
55

66
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7-
gem "rails", "~> 7", ">= 7.0.7"
7+
gem "rails", "~> 7", ">= 7.1.2"
88

99
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
10-
gem "sprockets-rails"
10+
gem "sprockets-rails", ">= 3.5.0"
1111

1212
# Use postgresql as the database for Active Record
1313
gem "pg", "~> 1.1"
@@ -16,16 +16,16 @@ gem "pg", "~> 1.1"
1616
gem "puma", "~> 6.3", ">= 6.3.1"
1717

1818
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
19-
gem "importmap-rails", ">= 1.1.6"
19+
gem "importmap-rails", ">= 1.2.2"
2020

2121
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
22-
gem "turbo-rails", ">= 1.5.0"
22+
gem "turbo-rails", ">= 2.0.0"
2323

2424
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
25-
gem "stimulus-rails", ">= 1.3.0"
25+
gem "stimulus-rails", ">= 1.3.1"
2626

2727
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
28-
gem "jbuilder"
28+
gem "jbuilder", ">= 2.12.0"
2929

3030
# Use Redis adapter to run Action Cable in production
3131
gem "redis", "~> 5.0"
@@ -48,12 +48,12 @@ gem "bootsnap", require: false
4848
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
4949
# gem "image_processing", "~> 1.2"
5050

51-
gem "cssbundling-rails", ">= 1.2.0"
52-
gem "bootstrap_form", ">= 5.3.0"
51+
gem "cssbundling-rails", ">= 1.4.0"
52+
gem "bootstrap_form", ">= 5.4.0"
5353
gem "sidekiq", ">= 7.0.8"
5454
gem "sidekiq-cron"
5555
gem "fugit"
56-
gem "rails-i18n", ">= 7.0.8"
56+
gem "rails-i18n", ">= 7.0.9"
5757
gem "parallel"
5858

5959
group :development, :test do
@@ -74,7 +74,7 @@ end
7474

7575
group :test do
7676
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
77-
gem "capybara"
77+
gem "capybara", ">= 3.40.0"
7878
gem "selenium-webdriver"
7979
gem "webdrivers"
8080
end

0 commit comments

Comments
 (0)