Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/penguinowl/hypixel-rubyed

A barebones API wrapper for the Hypixel Public API.
https://github.com/penguinowl/hypixel-rubyed

Last synced: 9 days ago
JSON representation

A barebones API wrapper for the Hypixel Public API.

Awesome Lists containing this project

README

        

# hypixel-rubyed [![Build Status](https://travis-ci.org/PenguinOwl/hypixel-rubyed.svg?branch=master)](https://travis-ci.org/PenguinOwl/hypixel-rubyed)
A barebones API wrapper for the Hypixel Public API.
# Getting started
Im not a big fan of sifting through documentation, so lets get to the point.
```code:ruby
api = HypixelAPI.new("API KEY HERE")
level = api.player(:uuid => "some uuid").deep_find(:hypixel_level).to_i
```
Nice, consice, and barebones.
# Installation
Add the following to your Gemfile
```
gem "hypixel-ruby"
```
Run `bundler install` and require it in your source with `require 'hypixel-ruby'` and get cracking!
# Resources
[Documentation](http://www.rubydoc.info/gems/hypixel-ruby/HypixelAPI)
[Rubygems](https://rubygems.org/gems/hypixel-ruby)
[Public API](https://github.com/HypixelDev/PublicAPI/tree/master/Documentation/methods)