GrapeClient
Simple access from your client to Grape APIs. Automatically supports: kaminari pagination, network access cache, nested objects, http basic authentication.
Installation
Add this line to your application's Gemfile:
gem 'grape-client'And then execute:
$ bundle
Or install it yourself as:
$ gem install grape-client
Usage
class User < GrapeClient::Base
  self.site     = 'http://localhost:3000'
  self.user     = 'user'
  self.password = 'password'
  self.prefix   = '/api/v1/'
  attr_accessor :id, :email
end
u = User.create(email: 'test@example.com')
u.email = 'another@example.com'
u.save!
u.reload
u = User.find(2)
u.destroy
User.all.each do |user|
  ...
endContributing
- Fork it ( https://github.com/desofto/grape-client/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