lucid-shopify 0.63.0 → 0.63.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/lucid/shopify.rb +1 -1
- data/lib/lucid/shopify/response.rb +1 -1
- data/lib/lucid/shopify/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffe59e48e1d046fa4eb07460911384691bda6c07981b056cb3c89dd48d95514f
|
|
4
|
+
data.tar.gz: 778d7a488544cb0452290010eff0ff59db765afd55abd8bbdefd674b38984a79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ed2477757ec40d6464699bc8a930604f21b5aee5ccabaef0eebd1113fa4a73a1edbb76db8bfc50cb35a53f11440fda704535e0e982daa490f9e6e03deab66d8
|
|
7
|
+
data.tar.gz: 03d6ea262fc118da219fb18f11478da1d4a384c0d50b7a67e6b4941abd6112d82c854a4dd57f5de7b5510d28b781d0e647f28cd8ed1f14dffa6cca71753dc126
|
data/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Setup
|
|
|
35
35
|
|
|
36
36
|
Lucid::Shopify.configure do |config|
|
|
37
37
|
config.api_key = '...'
|
|
38
|
-
config.api_version = '...' # e.g. '2020-
|
|
38
|
+
config.api_version = '...' # e.g. '2020-04'
|
|
39
39
|
config.billing_callback_uri = '...'
|
|
40
40
|
config.callback_uri = '...' # (for OAuth; unused by this gem)
|
|
41
41
|
config.logger = Logger.new(STDOUT)
|
data/lib/lucid/shopify.rb
CHANGED
|
@@ -118,7 +118,7 @@ module Lucid
|
|
|
118
118
|
raise ShopError.new(request, self), 'Shop is frozen, awaiting payment'
|
|
119
119
|
when 403
|
|
120
120
|
# NOTE: Not sure what this one means (undocumented).
|
|
121
|
-
if error_message?(/unavailable shop/i)
|
|
121
|
+
if error_message?([/unavailable shop/i])
|
|
122
122
|
raise ShopError.new(request, self), 'Shop is unavailable'
|
|
123
123
|
else
|
|
124
124
|
raise ClientError.new(request, self)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lucid-shopify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.63.
|
|
4
|
+
version: 0.63.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kelsey Judson
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dotenv
|
|
@@ -136,7 +136,7 @@ dependencies:
|
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '4.1'
|
|
139
|
-
description:
|
|
139
|
+
description:
|
|
140
140
|
email: kelsey@lucid.nz
|
|
141
141
|
executables: []
|
|
142
142
|
extensions: []
|
|
@@ -179,7 +179,7 @@ homepage: https://github.com/lucidnz/gem-lucid-shopify
|
|
|
179
179
|
licenses:
|
|
180
180
|
- ISC
|
|
181
181
|
metadata: {}
|
|
182
|
-
post_install_message:
|
|
182
|
+
post_install_message:
|
|
183
183
|
rdoc_options: []
|
|
184
184
|
require_paths:
|
|
185
185
|
- lib
|
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
version: '0'
|
|
196
196
|
requirements: []
|
|
197
197
|
rubygems_version: 3.1.2
|
|
198
|
-
signing_key:
|
|
198
|
+
signing_key:
|
|
199
199
|
specification_version: 4
|
|
200
200
|
summary: Shopify client library
|
|
201
201
|
test_files: []
|