Consumer
Simple gem to consumer json API by HTTP GET method
Installation
Add this line to your application's Gemfile:
gem 'consumer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install consumer
Usage
Get info from url
user = Consumer.get("http://user.api.url")
puts user.name
puts user.purchases.first.date
# with hipermidia
puts user.link("rel_name").link
Using a hash
user = Consumer.build({name: 'name1', 'purchases': [{date: null}]})
puts user.name
puts user.purchases.first.date
Contributing
- Fork it ( https://github.com/[my-github-username]/consumer/fork )
- 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 a new Pull Request