Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI

on:
- push
pull_request:

jobs:
build:
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
addressable (2.9.0)
public_suffix (>= 2.0.2, < 8.0)
ast (2.4.1)
base64 (0.2.0)
builder (3.2.4)
Expand Down Expand Up @@ -93,7 +93,7 @@ GEM
pry-byebug (3.9.0)
byebug (~> 11.0)
pry (~> 0.13.0)
public_suffix (4.0.6)
public_suffix (4.0.7)
rack (2.2.23)
rainbow (3.0.0)
rake (13.0.1)
Expand Down
1 change: 1 addition & 0 deletions lib/shopify_api.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true
$:.unshift(File.dirname(__FILE__))
require 'logger'
require 'active_resource'
require 'active_support/core_ext/class/attribute_accessors'
require 'digest/md5'
Expand Down
6 changes: 5 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
require 'webmock/minitest'
require_relative 'lib/webmock_extensions/last_request'
require 'mocha/minitest'
require 'pry'
begin
require 'pry'
rescue LoadError, NameError
# Older pry releases are not compatible with newer Rubies used for local verification.
end

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
Expand Down
Loading