Skip to content

Commit 5a31941

Browse files
committed
Change activesupport appraisals to >= 6.0
1 parent 4ba3cd1 commit 5a31941

8 files changed

+15
-35
lines changed

Appraisals

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
appraise 'activesupport-3.2' do
2-
gem 'activesupport', '~> 3.2.22'
3-
gem 'minitest', '~> 5'
1+
appraise 'activesupport-6.0' do
2+
gem 'activesupport', '~> 6.0.0'
43
end
54

6-
appraise 'activesupport-4.0' do
7-
gem 'activesupport', '~> 4.0.13'
5+
appraise 'activesupport-6.1' do
6+
gem 'activesupport', '~> 6.1.0'
87
end
98

10-
appraise 'activesupport-4.1' do
11-
gem 'activesupport', '~> 4.1.14'
9+
appraise 'activesupport-7.0' do
10+
gem 'activesupport', '~> 7.0.0'
1211
end
1312

14-
appraise 'activesupport-4.2' do
15-
gem 'activesupport', '~> 4.2.5.1'
16-
end
17-
18-
appraise 'activesupport-5.0' do
19-
gem 'activesupport', '~> 5.0.0'
13+
appraise 'activesupport-7.1' do
14+
gem 'activesupport', '~> 7.1.0'
2015
end

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gemspec
44

55
gem 'rake'
66

7-
gem "activesupport"
7+
gem "activesupport", ">= 4.0.13"
88
gem 'addressable', '~> 2.2'
99

1010
gem "codeclimate-test-reporter", group: :test, require: nil

gemfiles/activesupport_3.2.gemfile

Lines changed: 0 additions & 15 deletions
This file was deleted.

gemfiles/activesupport_5.0.gemfile renamed to gemfiles/activesupport_6.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "rake"
6-
gem "activesupport", "~> 5.0.0"
6+
gem "activesupport", "~> 6.0.0"
77
gem "addressable", "~> 2.2"
88
gem "codeclimate-test-reporter", group: :test, require: nil
99

gemfiles/activesupport_4.0.gemfile renamed to gemfiles/activesupport_6.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "rake"
6-
gem "activesupport", "~> 4.0.13"
6+
gem "activesupport", "~> 6.1.0"
77
gem "addressable", "~> 2.2"
88
gem "codeclimate-test-reporter", group: :test, require: nil
99

gemfiles/activesupport_4.1.gemfile renamed to gemfiles/activesupport_7.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "rake"
6-
gem "activesupport", "~> 4.1.14"
6+
gem "activesupport", "~> 7.0.0"
77
gem "addressable", "~> 2.2"
88
gem "codeclimate-test-reporter", group: :test, require: nil
99

gemfiles/activesupport_4.2.gemfile renamed to gemfiles/activesupport_7.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source "https://rubygems.org"
44

55
gem "rake"
6-
gem "activesupport", "~> 4.2.5.1"
6+
gem "activesupport", "~> 7.1.0"
77
gem "addressable", "~> 2.2"
88
gem "codeclimate-test-reporter", group: :test, require: nil
99

json_api_client.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Gem::Specification.new do |s|
1111
s.description = 'Build client libraries compliant with specification defined by jsonapi.org'
1212
s.summary = 'Build client libraries compliant with specification defined by jsonapi.org'
1313

14-
s.add_dependency "activesupport", '>= 3.2.0'
14+
s.add_dependency "activesupport", '>= 6.0.0'
1515
s.add_dependency "faraday", '>= 0.15.2', '< 2.0'
1616
s.add_dependency "faraday-gzip", '>= 0.1.0', '< 2.0'
1717
s.add_dependency "addressable", '~> 2.2'
18-
s.add_dependency "activemodel", '>= 3.2.0'
18+
s.add_dependency "activemodel", '>= 6.0.0'
1919
s.add_dependency "rack", '>= 0.2'
2020

2121
s.add_development_dependency "webmock", '~> 3.5.1'

0 commit comments

Comments
 (0)