GrapeClient

GitHub version Gem Version Build Status Code Climate Test Coverage

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: '[email protected]')
u.email = '[email protected]'
u.save!
u.reload

u = User.find(2)
u.destroy

User.all.each do |user|
  ...
end

Contributing

  1. Fork it ( https://github.com/desofto/grape-client/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request