lucid_shopify 0.17.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6f55b3ddbd880a63fa9b5afdd2d41ef31ba8a3e1d9cac38cda26c4247cac0f2
4
- data.tar.gz: 40361daabb00f6bc9f8269cc97c06d68b748f2271d8d802f9eb763b89c3e9390
3
+ metadata.gz: 9c4f84b9baba2b3b7ccb9b5d229574a7ec79c049c6f05a8dd6825c5abfe3d24e
4
+ data.tar.gz: ba944ddded646ed8539f04e5304ad9b1804e424501d644b7e5d3e578b9acd19e
5
5
  SHA512:
6
- metadata.gz: 11bb3dd84382f4d700ab0714d8b9c84c80222b2dac28870e68a26df97832a11c499d07c1a30f2c22b3c938b98893918cd7e5ee1f87fa83f7897a9019c27a6c15
7
- data.tar.gz: bd289c3cdac7201be678821547363dadd135c16dd0b50696a248c326be68fba84f5432763e1a1dc375e52daa2d06feeae4a6759d2746b86d541e44fb5de42fda
6
+ metadata.gz: 0f7184924aa731d6ad5de83863692e39be65f4c15b98ca332c4084a3b02087909a03e3bd0eb166b4e6952242ea38b7d9998592f5778034ca17fc6cdab693b8ff
7
+ data.tar.gz: 63f6ed87fc95769b63b90829b0e994ad93d7cd151c5ccf476fb9220a3948990ef2bdd0020d6c9afea230a1ce0ca39324710e073aadeae666cc44b9d1e3ae002a
data/README.md CHANGED
@@ -12,7 +12,7 @@ Add the gem to your ‘Gemfile’:
12
12
  Usage
13
13
  -----
14
14
 
15
- ### Configure the default API client credentials
15
+ ### Configure the default API client
16
16
 
17
17
  LucidShopify.config = LucidShopify::Config.new(
18
18
  '...', # api_key
@@ -23,9 +23,6 @@ Usage
23
23
  '...', # webhook_uri
24
24
  )
25
25
 
26
- Alternatively, a credentials object may be passed as a keyword
27
- argument to any of the classes that make use of it.
28
-
29
26
  Additionally, each API request requires authorization:
30
27
 
31
28
  credentials = LucidShopify::Credentials.new(
data/lib/lucid_shopify.rb CHANGED
@@ -6,7 +6,6 @@ module LucidShopify
6
6
  autoload :ActivateCharge, 'lucid_shopify/activate_charge'
7
7
  autoload :Authorize, 'lucid_shopify/authorize'
8
8
  autoload :Client, 'lucid_shopify/client'
9
- autoload :Config, 'lucid_shopify/config'
10
9
  autoload :Container, 'lucid_shopify/container'
11
10
  autoload :CreateAllWebhooks, 'lucid_shopify/create_all_webhooks'
12
11
  autoload :CreateCharge, 'lucid_shopify/create_charge'
@@ -62,3 +61,5 @@ module LucidShopify
62
61
  end
63
62
  end
64
63
  end
64
+
65
+ require 'lucid_shopify/config'
@@ -4,6 +4,7 @@ require 'dry/container'
4
4
  require 'http'
5
5
 
6
6
  require 'lucid_shopify'
7
+ require 'lucid_shopify/config'
7
8
 
8
9
  module LucidShopify
9
10
  Container = Dry::Container.new
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LucidShopify
4
- VERSION = '0.17.0'
4
+ VERSION = '0.18.0'
5
5
  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.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelsey Judson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-26 00:00:00.000000000 Z
11
+ date: 2018-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv