infusionsoft 1.3.5 → 1.3.6a

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: ea5036f0847c9f8d2d27b105450d9f7f244fc3c8afc82a9df65a5dd3dfd2259c
4
- data.tar.gz: 225a3bc76cd0d2dbf2834709fd515d56145bc8ebcacde1adc5cf861d79d6e90c
3
+ metadata.gz: cd4ba61ef39369dc7150b669da223411d3ad3f02357c385318e7438cd3266adb
4
+ data.tar.gz: cae8f51e2f383f6c0c959ea189b5f436439cf60fd3b718beeadd7209eda36dff
5
5
  SHA512:
6
- metadata.gz: 3ecd5f2ee7588c842b4e83355fe3c9abd154e38cd772f408ce32ffc269feca4c3b8640f8b8961d5f4af58400ca38c93a19e7a6766843e49d4b4fb5a6d1fe8e60
7
- data.tar.gz: fb4ee7abf586a9160c10e1d8ee1e3c7ce51454f89f0948a4dae773e754fb246904a722721490208171a762e2764e4cd142e25d65817666d6bb3ab5ced776daee
6
+ metadata.gz: 3461287b4e4443250676970365776e8f50438a55c718b4b5070b31e6cefbd6ffb0cadb5a99b4505b1ed89971d358d53cd4ec6530098d2afaacdacc4a43cc5719
7
+ data.tar.gz: 9a4860dba1b624fc8ad2773b5b51cfcf7f38b9d443c6e634df65d564f2d47f5b05389fb81bf9d95580980a698e1fc8cbecd388bf2abe6a602f9e54e7d812247c
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  A Ruby wrapper for the Infusionsoft API
7
7
 
8
8
  **update notes**
9
- * upcoming - Adding support for rest api
9
+ * v1.3.5 - Rest API is now supported (documentation incoming)
10
10
  * v1.2.2 - Catching Infusionsoft API SSL handshake issues
11
11
  * v1.2.1 - Added OAuth support
12
12
  * v1.2.0 - Added `invoice_add_subscription` call to mirror Infusionsoft API parameters to eventually replace `invoice_add_recurring_order`
@@ -37,7 +37,7 @@ end
37
37
  ```
38
38
  ## OAUTH 2.0
39
39
 
40
- You will need to handle and obtain the access_token on your own.
40
+ You will need to handle and obtain the access_token on your own.
41
41
 
42
42
  ```ruby
43
43
  # You will need to attain the access_token first, then do the config like so:
data/lib/infusionsoft.rb CHANGED
@@ -15,9 +15,9 @@ module Infusionsoft
15
15
  end
16
16
 
17
17
  # Delegate to ApiInfusionsoft::Client
18
- def method_missing(method, *args, &block)
18
+ def method_missing(method, *args, **kwargs, &block)
19
19
  return super unless new.respond_to?(method)
20
- new.send(method, *args, &block)
20
+ new.send(method, *args, **kwargs, &block)
21
21
  end
22
22
 
23
23
  def respond_to?(method, include_private = false)
@@ -1,4 +1,4 @@
1
1
  module Infusionsoft
2
2
  # The version of the gem
3
- VERSION = '1.3.5'.freeze unless defined?(::Infusionsoft::VERSION)
3
+ VERSION = '1.3.6a'.freeze unless defined?(::Infusionsoft::VERSION)
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infusionsoft
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6a
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Leavitt
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-06 00:00:00.000000000 Z
11
+ date: 2021-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -131,7 +131,7 @@ files:
131
131
  homepage: https://github.com/nateleavitt/infusionsoft
132
132
  licenses: []
133
133
  metadata: {}
134
- post_install_message:
134
+ post_install_message:
135
135
  rdoc_options: []
136
136
  require_paths:
137
137
  - lib
@@ -142,12 +142,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
142
142
  version: '0'
143
143
  required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
- - - ">="
145
+ - - ">"
146
146
  - !ruby/object:Gem::Version
147
- version: 1.3.6
147
+ version: 1.3.1
148
148
  requirements: []
149
- rubygems_version: 3.1.2
150
- signing_key:
149
+ rubygems_version: 3.2.3
150
+ signing_key:
151
151
  specification_version: 4
152
152
  summary: Ruby wrapper for the Infusionsoft API
153
153
  test_files: []