File tree 5 files changed +21
-4
lines changed
5 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,16 @@ jobs:
16
16
- activesupport_6.0
17
17
- activesupport_6.1
18
18
- activesupport_7.0
19
+ - activesupport_7.1
19
20
exclude :
20
21
- ruby-version : ' 2.5'
21
22
activesupport-version : activesupport_7.0
22
23
- ruby-version : ' 2.6'
23
24
activesupport-version : activesupport_7.0
25
+ - ruby-version : ' 2.5'
26
+ activesupport-version : activesupport_7.1
27
+ - ruby-version : ' 2.6'
28
+ activesupport-version : activesupport_7.1
24
29
fail-fast : false
25
30
26
31
env :
Original file line number Diff line number Diff line change
1
+ # After a new entry: `bundle exec appraisal install`
2
+ # Add an entry in `.github/workflows/push.yml`'s file
3
+
1
4
appraise "activesupport_5.2" do
2
5
gem "activesupport" , "~> 5.2.0"
3
6
end
13
16
appraise "activesupport_7.0" do
14
17
gem "activesupport" , "~> 7.0.0"
15
18
end
19
+
20
+ appraise "activesupport_7.1" do
21
+ gem "activesupport" , "~> 7.1.0"
22
+ end
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
spec . add_dependency "csv"
22
22
spec . add_dependency "rainbow"
23
23
spec . add_dependency "open_uri_redirections"
24
- spec . add_dependency "activesupport" , "< 7.1.0"
24
+ spec . add_dependency "activesupport"
25
25
spec . add_dependency "addressable"
26
26
spec . add_dependency "typhoeus"
27
27
spec . add_dependency "escape_utils"
Original file line number Diff line number Diff line change
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 7.1.0"
6
+
7
+ gemspec path: "../"
Original file line number Diff line number Diff line change 4
4
require "tempfile"
5
5
require "typhoeus"
6
6
7
- require "active_support/core_ext/date/conversions"
8
- require "active_support/core_ext/time/conversions"
9
- require "active_support/core_ext/object"
7
+ require "active_support"
10
8
require "open_uri_redirections"
11
9
require "uri_template"
12
10
You can’t perform that action at this time.
0 commit comments