Project

restiny

0.0
The project is in a healthy, maintained state
A gem for interacting with Bungie's Destiny API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 1.1
 Project Readme

Restiny

This is a very early version of what will hopefully be a somewhat comprehensive and useful gem to interact with Bungie's Destiny 2 API. It's currently somewhat useable! Contributions are very welcome!

Eyes up, Ruby developer!

Installation

Install the gem by either adding it to your Gemfile...

gem 'restiny'

...and installing it via Bundler:

bundle install

Or, just install it directly via Rubygems:

gem install restiny

Usage

You'll first want to include the gem in your code:

require 'restiny'

Next, you'll need to tell Restiny your Bungie API key - you can create and manage your own here. Once you've got your key, pass it to the gem:

Restiny.api_key = 'MY-API-KEY'

And away you go! I'll add more details soon, but the code is hopefully obvious enough to muddle through things yourself for now.