The PipelineDeals API gem is a nice ruby wrapper around the PipelineDeals API. It will allow you full CRUD access to all of the core PipelieDeals components in a very easy-to-use library.
Add this line to your application's Gemfile:
gem 'pipeline_deals'
And then execute:
$ bundle
Or install it yourself as:
$ gem install pipeline_deals
First and foremost, register your api key:
PipelineDeals.configure do |config|
config.api_key = 'abcd1234'
end
If you have an app_key, register this along with your api key:
PipelineDeals.configure do |config|
config.api_key = 'abcd1234'
config.app_key = 'xxxxxxxxxxxxx'
end
deal = PipelineDeals::Deal.find(1234) # find the deal
deal.name = 'blah2' # change an attribute
deal.save # re-save the deal to the site
deal.people # associations are respected
deal.people.first.id
deal.person_ids
deals = PipelineDeals::Deal.find(:all) # find(:all) is supported
deals = PipelineDeals::Deal.find(:all, params: {conditions: {deal_name: 'blah'}})
deals = PipelineDeals::Deal.where(conditions: {deal_name: 'blah'})
You can filter your list by adding a conditions
parameter. All
conditions are listed in the Pipelinedeals API documentation
deals = PipelineDeals::Deal.where(conditions: {deal_value: {from: '500', to: '1000'}})
All list of things in the PipelineDeals API are paginated. The default number of items per page is 200.
You can access the current page and total by calling .pagination
on the list:
deals = PipelineDeals::Deal.find(:all)
deals.pagination
=> {"per_page"=>200, "total"=>14, "page_var"=>"page", "pages"=>1, "page"=>1}
You can modify the page you are on when requesting:
deals = PipelineDeals::Deal.find(:all, params: { page: 2})
# or you can use where
deals = Deal.where({page: 2})
You can modify the number per page as well:
deals = PipelineDeals::Deal.where(per_page: 2, page: 3)
deals.pagination
=> {"per_page"=>3, "total"=>14, "page_var"=>"page", "pages"=>8, "page"=>2}
Admin data is currently read-only.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request