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.