We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c822df commit bcbd8d4Copy full SHA for bcbd8d4
.github/workflows/main.yml
@@ -19,6 +19,7 @@ jobs:
19
gemfile:
20
- rails_7.gemfile
21
- rails_8.gemfile
22
+ - rails_8.1.gemfile
23
steps:
24
- name: Install packages required for `curb` gem
25
run: |
Appraisals
@@ -9,3 +9,9 @@ appraise 'rails-8' do
9
gem 'activeresource', '~> 6.0'
10
gem 'activesupport', '~> 8.0'
11
end
12
+
13
+appraise 'rails-8.1' do
14
+ gem 'actionpack', '~> 8.1'
15
+ gem 'activeresource', '~> 6.0'
16
+ gem 'activesupport', '~> 8.1'
17
+end
gemfiles/rails_8.1.gemfile
@@ -0,0 +1,9 @@
1
+# This file was generated by Appraisal
2
3
+source "https://rubygems.org"
4
5
+gem "actionpack", "~> 8.1"
6
+gem "activeresource", "~> 6.0"
7
+gem "activesupport", "~> 8.1"
8
+gemspec path: "../"
0 commit comments