closeio 2.4.9 → 2.4.11
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/lib/closeio/client.rb +1 -0
- data/lib/closeio/resources/integration_link.rb +6 -6
- data/lib/closeio/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b7bee3c43ab9dd3f369ea6cbf36e8df2950fa2f
|
|
4
|
+
data.tar.gz: 6513c5dedcf30285b2319ba7efad72de4a29006a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 908cf2cf33cd8d9807fc968ee7d62a610255f69abf624499913da04f07cafa2b06b79183d5b5ad8a4972fb8bd624e785e392b1f17b679e9301ec19e412187d3d
|
|
7
|
+
data.tar.gz: 860093c357eb81777831a94cacbce15ecb8c4af7379c122b9d9335fae4477fca479adf1bd65af204fd978b40c73dd0ac6e02133811fe74a9f660a673f8992c2e
|
data/lib/closeio/client.rb
CHANGED
|
@@ -10,6 +10,7 @@ module Closeio
|
|
|
10
10
|
include Closeio::Client::Contact
|
|
11
11
|
include Closeio::Client::CustomField
|
|
12
12
|
include Closeio::Client::EmailTemplate
|
|
13
|
+
include Closeio::Client::IntegrationLink
|
|
13
14
|
include Closeio::Client::Lead
|
|
14
15
|
include Closeio::Client::LeadStatus
|
|
15
16
|
include Closeio::Client::Opportunity
|
|
@@ -3,28 +3,28 @@ module Closeio
|
|
|
3
3
|
module IntegrationLink
|
|
4
4
|
|
|
5
5
|
def list_integration_links
|
|
6
|
-
get(
|
|
6
|
+
get(integration_link_path)
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
def find_integration_link(id)
|
|
10
|
-
get("#{
|
|
10
|
+
get("#{integration_link_path}#{id}/")
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def create_integration_link(options={})
|
|
14
|
-
post(
|
|
14
|
+
post(integration_link_path, options)
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def update_integration_link(id, options={})
|
|
18
|
-
put("#{
|
|
18
|
+
put("#{integration_link_path}#{id}/", options)
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
def delete_integration_link(id)
|
|
22
|
-
delete("#{
|
|
22
|
+
delete("#{integration_link_path}#{id}/")
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
private
|
|
26
26
|
|
|
27
|
-
def
|
|
27
|
+
def integration_link_path
|
|
28
28
|
"integration_link/"
|
|
29
29
|
end
|
|
30
30
|
|
data/lib/closeio/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: closeio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Taylor Brooks
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -191,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
191
191
|
version: '0'
|
|
192
192
|
requirements: []
|
|
193
193
|
rubyforge_project:
|
|
194
|
-
rubygems_version: 2.4.
|
|
194
|
+
rubygems_version: 2.4.8
|
|
195
195
|
signing_key:
|
|
196
196
|
specification_version: 4
|
|
197
197
|
summary: A Ruby wrapper for the CloseIO API
|