closeio 2.4.9 → 2.4.11

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
  SHA1:
3
- metadata.gz: 7fdb8c3289f216c6fa8ca3bb55b0bf0dd9e9d1f9
4
- data.tar.gz: e068edcc17a6738b08b6c201f9117135151ec083
3
+ metadata.gz: 0b7bee3c43ab9dd3f369ea6cbf36e8df2950fa2f
4
+ data.tar.gz: 6513c5dedcf30285b2319ba7efad72de4a29006a
5
5
  SHA512:
6
- metadata.gz: 9778810192005f7906ad380658612bfa3b2f87739dc6f91a37024424f4df97fbdee70d1c8273d29c027456de6e11f08381a023d962b467ec444fc1451f8d4b20
7
- data.tar.gz: 59ac422e3d8114aa6df6ac8b19e9bb2f5a5f2ada3c6389383425ce0fb72679fad3b1249cadd18e3caf6133a511d7f7b06e044bd8a6d57a1264da0a2e27265449
6
+ metadata.gz: 908cf2cf33cd8d9807fc968ee7d62a610255f69abf624499913da04f07cafa2b06b79183d5b5ad8a4972fb8bd624e785e392b1f17b679e9301ec19e412187d3d
7
+ data.tar.gz: 860093c357eb81777831a94cacbce15ecb8c4af7379c122b9d9335fae4477fca479adf1bd65af204fd978b40c73dd0ac6e02133811fe74a9f660a673f8992c2e
@@ -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(custom_field_path)
6
+ get(integration_link_path)
7
7
  end
8
8
 
9
9
  def find_integration_link(id)
10
- get("#{custom_field_path}#{id}/")
10
+ get("#{integration_link_path}#{id}/")
11
11
  end
12
12
 
13
13
  def create_integration_link(options={})
14
- post(custom_field_path, options)
14
+ post(integration_link_path, options)
15
15
  end
16
16
 
17
17
  def update_integration_link(id, options={})
18
- put("#{custom_field_path}#{id}/", options)
18
+ put("#{integration_link_path}#{id}/", options)
19
19
  end
20
20
 
21
21
  def delete_integration_link(id)
22
- delete("#{custom_field_path}#{id}/")
22
+ delete("#{integration_link_path}#{id}/")
23
23
  end
24
24
 
25
25
  private
26
26
 
27
- def custom_field_path
27
+ def integration_link_path
28
28
  "integration_link/"
29
29
  end
30
30
 
@@ -1,3 +1,3 @@
1
1
  module Closeio
2
- VERSION = "2.4.9"
2
+ VERSION = "2.4.11"
3
3
  end
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.9
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-10 00:00:00.000000000 Z
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.5
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