Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Active Resource upper bound version #891

Merged
merged 2 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,15 @@ jobs:
strategy:
matrix:
version:
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "3.0"
gemfile:
- Gemfile_ar41
- Gemfile_ar50
- Gemfile_ar51
- Gemfile_ar_master
- Gemfile_ar60
- Gemfile_ar_main
exclude:
- version: "2.7"
gemfile: Gemfile_ar41
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
shopify_api (9.5)
activeresource (>= 4.1.0, < 6.0.0)
activeresource (>= 4.1.0)
graphql-client
rack

Expand Down
5 changes: 5 additions & 0 deletions Gemfile_ar60
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gemspec

gem "activeresource", "~> 6.0"
File renamed without changes.
2 changes: 1 addition & 1 deletion shopify_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = ">= 2.4"

s.add_runtime_dependency("activeresource", ">= 4.1.0", "< 6.0.0")
s.add_runtime_dependency("activeresource", ">= 4.1.0")
s.add_runtime_dependency("rack")
s.add_runtime_dependency("graphql-client")

Expand Down