Skip to content

desofto/grape-client

Repository files navigation

GrapeClient

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: 'test@example.com')
u.email = 'another@example.com'
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

About

Simple access from your client to Grape APIs. Automatically supports: kaminari pagination, network access cache, nested objects, http basic authentication.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published