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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64a496caf54972765537cc4b855f189aca434633532751a0e7fea98bb2d1b88a
4
- data.tar.gz: 233680126ea1eef07851305fdff2e33d194892a51ad61898f19c81f636224cd5
3
+ metadata.gz: ffe59e48e1d046fa4eb07460911384691bda6c07981b056cb3c89dd48d95514f
4
+ data.tar.gz: 778d7a488544cb0452290010eff0ff59db765afd55abd8bbdefd674b38984a79
5
5
  SHA512:
6
- metadata.gz: cc6206e1bffc144cfc56a0c3413196e693a52a1a998aef65368cc4ca5e513e8bbfef94601292a2b3cf96def27aa5c1ee4003dbd4afb79388de3d50c4b4088ea3
7
- data.tar.gz: 8d546eaa76261554880a7695f1c559510d720e3f23de8c3b5baa4e23f1db885cbd2c1991c2ea7137e58dae0c1c2237612b50d1d44cefc98fb24326b3d214c91e
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-01'
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)
@@ -45,7 +45,7 @@ module Lucid
45
45
  extend Dry::Configurable
46
46
 
47
47
  setting :api_key
48
- setting :api_version, '2020-01'
48
+ setting :api_version, '2020-04'
49
49
  setting :billing_callback_uri
50
50
  setting :callback_uri
51
51
  setting :logger, Logger.new(File::NULL).freeze
@@ -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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lucid
4
4
  module Shopify
5
- VERSION = '0.63.0'
5
+ VERSION = '0.63.1'
6
6
  end
7
7
  end
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.0
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-03-24 00:00:00.000000000 Z
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: []