- Faraday 0.9.0 compatibility. Thanks, @alexchee!
- Preserve response in error messages. Thanks, @nitrodist!
- Update Faraday
- Use FaradayMiddleware
- Remove usage of MultiJson
- Fixes a problem running specs with JRuby and REE
- Support Blackberry API
- Can load APID collection
- Can load device token collection
- Removed usage of Bundler gem tasks. It's easier to do this by hand.
- MultiJson used to handle JSON
encoding/decoding. Using the JSON engine of your choice is as simple
as:
MultiJson.engine = :your_choice
- Instead of having an invalid request return false, exceptions will be raised
with messages containing details about the fail. This allows for
better error handling. Should the desired resource not be found,
Zeppelin::ResourceNotFoundwill be raised, for other errors,Zeppelin::ClientErrorwill be raised. Successful responses will still returntrue.
- Now using RSpec as the test harness
- CI covers Ruby 1.9.3
- James Herdman added as a contributor
- Refactored handling of responses