Skip to content

Commit 25b7e0c

Browse files
committed
Fix CI by correcting railties version to include 7.1.z
1 parent 9c000f8 commit 25b7e0c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
- uses: ruby/setup-ruby@v1
6464
with:
65-
ruby-version: 2.7
65+
ruby-version: 3.1
6666
bundler-cache: true
6767

6868
- name: rubocop

minitest-rails.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
1818
gem.required_ruby_version = ">= 2.7.0"
1919

2020
gem.add_dependency "minitest", "~> 5.20"
21-
gem.add_dependency "railties", ">= 7.2.0", "< 8.0.0"
21+
gem.add_dependency "railties", ">= 7.1.0", "< 8.0.0"
2222

2323
gem.add_development_dependency "minitest-autotest", "~> 1.1"
2424
gem.add_development_dependency "minitest-focus", "~> 1.4"

test/helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Application < ::Rails::Application
2626
config.secret_key_base = "abc123"
2727
config.hosts << "www.example.com"
2828
config.eager_load = false
29-
config.load_defaults 7.2
29+
config.load_defaults 7.1
3030
end
3131
end
3232

0 commit comments

Comments
 (0)