Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/buckybox/buckybox-api-ruby

RubyGem wrapper for the Bucky Box API
https://github.com/buckybox/buckybox-api-ruby

api buckybox ruby rubygem

Last synced: about 2 months ago
JSON representation

RubyGem wrapper for the Bucky Box API

Awesome Lists containing this project

README

        

# BuckyBox::API

[![Build Status](https://gitlab.com/buckybox/buckybox-api-ruby/badges/master/build.svg)](https://gitlab.com/buckybox/buckybox-api-ruby/commits/master)
[![Dependency Status](http://img.shields.io/gemnasium/buckybox/buckybox-api-ruby.svg)](https://gemnasium.com/buckybox/buckybox-api-ruby)
[![Code Climate](http://img.shields.io/codeclimate/github/buckybox/buckybox-api-ruby.svg)](https://codeclimate.com/github/buckybox/buckybox-api-ruby)
[![Gem Version](http://img.shields.io/gem/v/buckybox-api.svg)](https://rubygems.org/gems/buckybox-api)

https://api.buckybox.com/docs

## Usage

```ruby
require "buckybox/api"

class YourClass

def boxes
api.boxes
end

private def api
@api ||= BuckyBox::API.new(
"API-Key" => "your API key",
"API-Secret" => "your API secret",
)
end

end

YourClass.new.boxes #=> some JSON
```

## License

LGPLv3