Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/penguinowl/hypixel-rubyed
- Owner: PenguinOwl
- License: mit
- Created: 2018-03-07T15:57:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-11T19:56:12.000Z (almost 7 years ago)
- Last Synced: 2024-04-24T04:11:53.911Z (8 months ago)
- Language: Ruby
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)