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 +4 -4
- data/README.md +2 -2
- data/lib/infusionsoft.rb +2 -2
- data/lib/infusionsoft/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd4ba61ef39369dc7150b669da223411d3ad3f02357c385318e7438cd3266adb
|
|
4
|
+
data.tar.gz: cae8f51e2f383f6c0c959ea189b5f436439cf60fd3b718beeadd7209eda36dff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
*
|
|
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)
|
data/lib/infusionsoft/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
147
|
+
version: 1.3.1
|
|
148
148
|
requirements: []
|
|
149
|
-
rubygems_version: 3.
|
|
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: []
|