Skip to content

Commit 2f9f155

Browse files
Update Rails to 7.2 and misc. non-major dependency updates (#80)
General non-major packages updates. This includes a Rails 7.1 -> 7.2 update. Run `bin/rails app:update` and pick out appropriate changes for the framework. The RuboCop RSpec checks are now complaining for some reason, so exclude a few rules that we are currently not following. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tanner Doshier <git@doshitan.com>
1 parent 5e2a120 commit 2f9f155

26 files changed

+323
-182
lines changed

template/{{app_name}}/.rubocop.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
require:
1+
plugins:
22
- rubocop-rspec
33
inherit_gem:
44
pundit: config/rubocop-rspec.yml
55
rubocop-rails-omakase: rubocop.yml
6+
7+
RSpec/ExampleLength:
8+
Enabled: false
9+
RSpec/MultipleExpectations:
10+
Enabled: false

template/{{app_name}}/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "https://rubygems.org"
33
ruby "3.4.2"
44

55
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
6-
gem "rails", "~> 7.1.3", ">= 7.1.3.2"
6+
gem "rails", "~> 7.2.0", ">= 7.2.2.1"
77

88
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
99
gem "sprockets-rails"
@@ -116,5 +116,5 @@ end
116116

117117
group :production do
118118
# Add plugin for pg gem to support AWS RDS IAM
119-
gem "pg-aws_rds_iam", "~> 0.5.0"
119+
gem "pg-aws_rds_iam", "~> 0.7.0"
120120
end

0 commit comments

Comments
 (0)