pipedrive_api 0.1.12 → 0.1.13

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: c0ab88c8b7e4269b47cc42cfbbb210d3c72275d8334f7262768a7af3e87fb327
4
- data.tar.gz: 25e69916abac7e13fc64f06e3ce5cc00ac72293db8a39e1c963236d80df4c6eb
3
+ metadata.gz: 0e300302fd4447ee6a83a8a8e11a871f1e780903eab3fdec794f8da976ac15a2
4
+ data.tar.gz: 52fcfff7b5001eb006b9f64e9a806e1901cce850f4c72c6f5214edb8b8a7a43d
5
5
  SHA512:
6
- metadata.gz: fc53cfde5136919ff8bdfea84aae008e12f9df720077bf018ec5c5b88eb8fb49e4ac48f15821eb79caf9ffde812f3743f804d9d9c1fc85c886dcb4c7c03a5db2
7
- data.tar.gz: bbc0e209eae71fb9fe2178831fdd9914920ca5cd0ac9d743dccd5cf3d28c117aadc50ae58aa5ec4ed43fa0e1d38e890b4c520cf485d421c4c96e70957d431aa9
6
+ metadata.gz: e0fae435fae67b8d585601a5b111897e91b6cb5c53758ff7bd1905de6cc9451f924be3d61d5f3b900bb294562f5329ff79fb4623bdb865fc0cacd134dd8ddf69
7
+ data.tar.gz: c9bec8076ed1851754f88acb0ef89a80297632b591541caa8e9653b0b91d02d331769a28e07f992e1cca73ecd379794fcb9484cf2d20c404676cb2cddfa215a5
data/README.md CHANGED
@@ -68,7 +68,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
68
68
 
69
69
  ## Contributing
70
70
 
71
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pipedrive_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
71
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bitbond/pipedrive_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
72
72
 
73
73
 
74
74
  ## License
data/lib/pipedrive_api.rb CHANGED
@@ -2,7 +2,9 @@ require 'pipedrive_api/version'
2
2
  require 'pipedrive_api/base'
3
3
  require 'pipedrive_api/person'
4
4
  require 'pipedrive_api/deal'
5
+ require 'pipedrive_api/deal_field'
5
6
  require 'pipedrive_api/organization'
7
+ require 'pipedrive_api/organization_field'
6
8
  require 'pipedrive_api/product'
7
9
  require 'pipedrive_api/pipeline'
8
10
  require 'pipedrive_api/person_field'
@@ -11,6 +13,7 @@ require 'pipedrive_api/stage'
11
13
  require 'pipedrive_api/search_result'
12
14
  require 'pipedrive_api/activity'
13
15
  require 'pipedrive_api/file'
16
+ require 'pipedrive_api/user'
14
17
 
15
18
  module PipedriveAPI
16
19
 
@@ -7,5 +7,6 @@ module PipedriveAPI
7
7
  handle response
8
8
  end
9
9
  end
10
+
10
11
  end
11
12
  end
@@ -0,0 +1,9 @@
1
+ module PipedriveAPI
2
+ class Deal < Base
3
+
4
+ class << self
5
+
6
+ end
7
+
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ module PipedriveAPI
2
+ class OrganizationField < Base
3
+
4
+ class << self
5
+
6
+
7
+
8
+ end
9
+
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ module PipedriveAPI
2
+ class User < Base
3
+
4
+ class << self
5
+
6
+ end
7
+
8
+ end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module PipedriveApi
2
- VERSION = "0.1.12"
2
+ VERSION = "0.1.13"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pipedrive_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - gareth
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-04 00:00:00.000000000 Z
11
+ date: 2019-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -101,15 +101,18 @@ files:
101
101
  - lib/pipedrive_api/activity.rb
102
102
  - lib/pipedrive_api/base.rb
103
103
  - lib/pipedrive_api/deal.rb
104
+ - lib/pipedrive_api/deal_field.rb
104
105
  - lib/pipedrive_api/file.rb
105
106
  - lib/pipedrive_api/note.rb
106
107
  - lib/pipedrive_api/organization.rb
108
+ - lib/pipedrive_api/organization_field.rb
107
109
  - lib/pipedrive_api/person.rb
108
110
  - lib/pipedrive_api/person_field.rb
109
111
  - lib/pipedrive_api/pipeline.rb
110
112
  - lib/pipedrive_api/product.rb
111
113
  - lib/pipedrive_api/search_result.rb
112
114
  - lib/pipedrive_api/stage.rb
115
+ - lib/pipedrive_api/user.rb
113
116
  - lib/pipedrive_api/version.rb
114
117
  - pipedrive_api.gemspec
115
118
  homepage: https://github.com/bitbond/pipedrive_api