Skip to content

Commit cae2c27

Browse files
committed
Add support for Rails 8.1 in Appraisal
1 parent 0b20948 commit cae2c27

File tree

7 files changed

+306
-22
lines changed

7 files changed

+306
-22
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
- gemfiles/rails_7.1.gemfile
2222
- gemfiles/rails_7.2.gemfile
2323
- gemfiles/rails_8.0.gemfile
24+
- gemfiles/rails_8.1.gemfile
2425
exclude:
2526
- ruby: '3.1'
2627
gemfile: 'gemfiles/rails_8.0.gemfile'
28+
- ruby: '3.1'
29+
gemfile: 'gemfiles/rails_8.1.gemfile'
2730
- ruby: '3.4'
2831
gemfile: 'gemfiles/rails_6.1.gemfile'
2932
- ruby: '3.4'

Appraisals

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ end
1717
appraise 'rails-8.0' do
1818
gem 'rails', '~> 8.0.0'
1919
end
20+
21+
appraise 'rails-8.1' do
22+
gem 'rails', '~> 8.1.0'
23+
end

gemfiles/rails_6.1.gemfile.lock

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ GEM
9797
marcel (1.0.4)
9898
method_source (1.1.0)
9999
mini_mime (1.1.5)
100+
mini_portile2 (2.8.9)
100101
minitest (5.25.1)
101102
net-imap (0.4.14)
102103
date
@@ -108,13 +109,8 @@ GEM
108109
net-smtp (0.5.0)
109110
net-protocol
110111
nio4r (2.7.3)
111-
nokogiri (1.16.7-aarch64-linux)
112-
racc (~> 1.4)
113-
nokogiri (1.16.7-arm64-darwin)
114-
racc (~> 1.4)
115-
nokogiri (1.16.7-x86_64-darwin)
116-
racc (~> 1.4)
117-
nokogiri (1.16.7-x86_64-linux)
112+
nokogiri (1.16.7)
113+
mini_portile2 (~> 2.8.2)
118114
racc (~> 1.4)
119115
overcommit (0.60.0)
120116
childprocess (>= 0.6.3, < 5)
@@ -197,10 +193,8 @@ GEM
197193
actionpack (>= 6.1)
198194
activesupport (>= 6.1)
199195
sprockets (>= 3.0.0)
200-
sqlite3 (1.7.2-aarch64-linux)
201-
sqlite3 (1.7.2-arm64-darwin)
202-
sqlite3 (1.7.2-x86_64-darwin)
203-
sqlite3 (1.7.2-x86_64-linux)
196+
sqlite3 (1.7.2)
197+
mini_portile2 (~> 2.8.0)
204198
thor (1.3.1)
205199
timecop (0.9.6)
206200
timeout (0.4.1)
@@ -216,6 +210,7 @@ PLATFORMS
216210
aarch64-linux
217211
arm64-darwin-22
218212
arm64-darwin-23
213+
arm64-darwin-24
219214
x86_64-darwin-22
220215
x86_64-linux
221216

gemfiles/rails_7.0.gemfile.lock

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ GEM
104104
marcel (1.0.4)
105105
method_source (1.1.0)
106106
mini_mime (1.1.5)
107+
mini_portile2 (2.8.9)
107108
minitest (5.25.1)
108109
net-imap (0.4.14)
109110
date
@@ -115,13 +116,8 @@ GEM
115116
net-smtp (0.5.0)
116117
net-protocol
117118
nio4r (2.7.3)
118-
nokogiri (1.16.7-aarch64-linux)
119-
racc (~> 1.4)
120-
nokogiri (1.16.7-arm64-darwin)
121-
racc (~> 1.4)
122-
nokogiri (1.16.7-x86_64-darwin)
123-
racc (~> 1.4)
124-
nokogiri (1.16.7-x86_64-linux)
119+
nokogiri (1.16.7)
120+
mini_portile2 (~> 2.8.2)
125121
racc (~> 1.4)
126122
overcommit (0.60.0)
127123
childprocess (>= 0.6.3, < 5)
@@ -198,10 +194,8 @@ GEM
198194
rubocop-ast (1.29.0)
199195
parser (>= 3.2.1.0)
200196
ruby-progressbar (1.13.0)
201-
sqlite3 (1.7.2-aarch64-linux)
202-
sqlite3 (1.7.2-arm64-darwin)
203-
sqlite3 (1.7.2-x86_64-darwin)
204-
sqlite3 (1.7.2-x86_64-linux)
197+
sqlite3 (1.7.2)
198+
mini_portile2 (~> 2.8.0)
205199
thor (1.3.1)
206200
timecop (0.9.6)
207201
timeout (0.4.1)
@@ -217,6 +211,7 @@ PLATFORMS
217211
aarch64-linux
218212
arm64-darwin-22
219213
arm64-darwin-23
214+
arm64-darwin-24
220215
x86_64-darwin-22
221216
x86_64-linux
222217

gemfiles/rails_7.2.gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ GEM
248248
PLATFORMS
249249
aarch64-linux
250250
arm64-darwin-23
251+
arm64-darwin-24
251252
x86_64-darwin-22
252253
x86_64-linux
253254

gemfiles/rails_8.1.gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "rails", "~> 8.1.0"
6+
7+
gemspec path: "../"

0 commit comments

Comments
 (0)