Skip to content

Commit 217687d

Browse files
authored
Merge pull request #891 from Shopify/rafaelfranca-patch-1
Remove Active Resource upper bound version
2 parents aba70f2 + 06335a1 commit 217687d

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@ jobs:
1212
strategy:
1313
matrix:
1414
version:
15-
- "2.4"
16-
- "2.5"
1715
- "2.6"
1816
- "2.7"
1917
- "3.0"
2018
gemfile:
2119
- Gemfile_ar41
2220
- Gemfile_ar50
2321
- Gemfile_ar51
24-
- Gemfile_ar_master
22+
- Gemfile_ar60
23+
- Gemfile_ar_main
2524
exclude:
2625
- version: "2.7"
2726
gemfile: Gemfile_ar41

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
shopify_api (9.5)
5-
activeresource (>= 4.1.0, < 6.0.0)
5+
activeresource (>= 4.1.0)
66
graphql-client
77
rack
88

Gemfile_ar60

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source "https://rubygems.org"
2+
3+
gemspec
4+
5+
gem "activeresource", "~> 6.0"
File renamed without changes.

shopify_api.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
3232

3333
s.required_ruby_version = ">= 2.4"
3434

35-
s.add_runtime_dependency("activeresource", ">= 4.1.0", "< 6.0.0")
35+
s.add_runtime_dependency("activeresource", ">= 4.1.0")
3636
s.add_runtime_dependency("rack")
3737
s.add_runtime_dependency("graphql-client")
3838

0 commit comments

Comments
 (0)