# Zendesk2 [![Build Status](https://secure.travis-ci.org/lanej/zendesk2.png)](http://travis-ci.org/lanej/zendesk2) Ruby client for the [Zendesk V2 API](http://developer.zendesk.com/documentation/rest_api/introduction.html) using [cistern](https://github.com/lanej/cistern) and [faraday](https://github.com/technoweenie/faraday) ## Installation Add this line to your application's Gemfile: gem 'zendesk2' Or install it yourself as: $ gem install zendesk2 ## Usage ### Defaults Default credentials will be read in from `~/.zendesk2` file in YAML format. ```yaml --- :subdomain: zendeskdev :username: zendeskedge@example.com :password: wickedsecurepassword ``` ### Creating the client Either the absolute url or the subdomain is required. Username and password is always required. ```ruby Zendesk2::Client.new(subdomain: "engineyard", username: "orchestra", password: "gwoo") => # ``` or ```ruby Zendesk2::Client.new(url: "http://support.cloud.engineyard.com", username: "mate", password: "bambilla") => # ``` ### Resources #### Collections Currently support resources * Categories * User * Ticket * Organization * Forums All collection are accessed like so: ```ruby client.users.all => ] ``` Collections also respond to `create` and `new` client.users.create(email: "ohhai@example.org", name: "lulz") => client.users.new(email: "ohhai@example.org") => #### Paging Paged collections respond to `next_page` and `previous_page` when appropriate. `page_size` and `page` can be passed directly to the collection to control size and index. page = client.users.all("per_page" => 1, "page" => 4) => ] page.next_page => ] page.previous_page => ] #### Models All models respond to `destroy` and `save` if applicable. `save` performs a 'create' operation if there is no identity provided or an 'update' if there is an identity. Zendesk2::Client::Ticket.new.save # performs a create Zendesk2::Client::Ticket.new(id: 1).save # performs an update Attributes can be enumerated by the `attributes` method. ## Releasing $ gem install gem-release $ gem bump -trv (major|minor|patch) ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request