Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/buckybox/buckybox-api-ruby
- Owner: buckybox
- License: other
- Created: 2014-08-28T09:14:31.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-11T12:52:01.000Z (over 8 years ago)
- Last Synced: 2024-10-02T18:45:48.109Z (3 months ago)
- Topics: api, buckybox, ruby, rubygem
- Language: Ruby
- Homepage: https://api.buckybox.com/docs
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
endprivate def api
@api ||= BuckyBox::API.new(
"API-Key" => "your API key",
"API-Secret" => "your API secret",
)
endend
YourClass.new.boxes #=> some JSON
```## License
LGPLv3