Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced and added feature sets (incomplete though) #14

Merged
merged 31 commits into from
Apr 23, 2014
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bfcb09b
Enhanced and added feature sets (incomplete though)
jufemaiz Jan 30, 2014
6d311ed
Deal extended for files and activities
jufemaiz Jan 30, 2014
b699ac8
Notes for a deal
jufemaiz Jan 30, 2014
08f4e8f
Notes reference
jufemaiz Jan 30, 2014
6e4b10e
Notes reference
jufemaiz Jan 30, 2014
8fecfd8
Notes reference
jufemaiz Jan 30, 2014
93c2cd9
Notes reference
jufemaiz Jan 30, 2014
d697fbc
Notes reference
jufemaiz Jan 30, 2014
b422286
Notes reference
jufemaiz Jan 30, 2014
7898ca4
Notes reference
jufemaiz Jan 31, 2014
e0e3b44
Notes reference
jufemaiz Jan 31, 2014
09dc0b2
Notes reference
jufemaiz Jan 31, 2014
2c6ffbc
Notes reference
jufemaiz Jan 31, 2014
e423581
Notes reference
jufemaiz Jan 31, 2014
8d8974d
Updates to the error handling to include parameters
jufemaiz Feb 6, 2014
0517087
bumped up bugfix
jufemaiz Feb 6, 2014
9eaf0ea
Log error issues
jufemaiz Feb 6, 2014
8227adb
Updates again
jufemaiz Feb 6, 2014
130d36f
Gemspec update
jufemaiz Feb 6, 2014
27e8247
Gemspec update
jufemaiz Feb 6, 2014
e16ba49
Logging added
jufemaiz Feb 11, 2014
bca47e6
Bumped gemspec
jufemaiz Feb 11, 2014
3f2d409
Update
jufemaiz Feb 11, 2014
09ddf7e
More logging
jufemaiz Feb 11, 2014
f750a20
Updated 'all' function to continuously request further data with flag
jufemaiz Feb 11, 2014
17eff0b
Updated 'all' function to continuously request further data with flag
jufemaiz Feb 11, 2014
e0b9610
Updated 'all' function to continuously request further data with flag
jufemaiz Feb 11, 2014
0a45fc7
Removed logging
jufemaiz Feb 11, 2014
a4f4cf6
Defective code fixed
jufemaiz Feb 21, 2014
58b7f59
Deals from Person
Meekohi Mar 17, 2014
2f2fc38
Merge pull request #1 from Meekohi/personDeals
jufemaiz Mar 17, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Notes reference
jufemaiz committed Jan 31, 2014
commit 09dc0b20d46fe5403812493610a6dd199afd957b
5 changes: 2 additions & 3 deletions lib/pipedrive/base.rb
Original file line number Diff line number Diff line change
@@ -51,9 +51,8 @@ def initialize(attrs = {})
def update(opts = {})
res = put "#{resource_path}/#{id}", :body => opts
if res.success?
res['data'].each_key do |key|
self[key.to_sym] = res['data']['key']
end
self.ostruct_update(res['data'])
true
else
bad_response(res)
end