Skip to content

Commit b1f8c79

Browse files
committed
Rails 7.1.4 is broken
Pending release of rails/rails@139cca9 so that 7.1.5 will work.
1 parent 3d54a07 commit b1f8c79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Appraisals

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ appraise 'rails-7.0' do
2121
end
2222

2323
appraise 'rails-7.1' do
24-
gem 'activemodel', '~> 7.1.0'
25-
gem 'activesupport', '~> 7.1.0'
24+
gem 'activemodel', '~> 7.1.0', '!= 7.1.4' # https://github.com/rails/rails/issues/52820
25+
gem 'activesupport', '~> 7.1.0', '!= 7.1.4' # https://github.com/rails/rails/issues/52820
2626
end

gemfiles/rails_7.1.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "activemodel", "~> 7.1.0"
6-
gem "activesupport", "~> 7.1.0"
5+
gem "activemodel", "~> 7.1.0", "!= 7.1.4"
6+
gem "activesupport", "~> 7.1.0", "!= 7.1.4"
77

88
gemspec path: "../"

0 commit comments

Comments
 (0)