Project

supergood

0.0
No release in over a year
Supergood - API monitoring
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.7, >= 2.7.4
~> 5.1, >= 5.1.1
~> 0.21.0
~> 3.12
~> 3.18, >= 3.18.1

Runtime

~> 0.1
~> 3.1, >= 3.1.1
~> 2.8, >= 2.8.1
~> 2.6, >= 2.6.3
~> 1.5, >= 1.6
~> 0.2, >= 0.2.2
~> 3.0
~> 0.12
~> 3.0
~> 4.1, >= 4.1.2
 Project Readme

Ruby

The Supergood Ruby client connects Supergood to your Ruby application. Follow these steps to integrate with the Ruby client.

1. Install the Supergood library

gem install supergood

2. Initialize the Supergood Library

Environment variables

Set the environment variables SUPERGOOD_CLIENT_ID and SUPERGOOD_CLIENT_SECRET using the API keys generated in the getting started instructions.

Initialize the Supergood client at the root of your application, or anywhere you're making API calls with the following code:

require 'supergood'

Supergood.init()

Passing keys

You can also pass the API keys in manually without setting environment variables.

Replace <CLIENT_ID> and <CLIENT_SECRET> with the API keys you generated in the getting started instructions.

require 'supergood'

Supergood.init({ client_id: "<CLIENT_ID>", client_secret: "<CLIENT_SECRET>" })

Local development

Setting the CLIENT_ID and CLIENT_SECRET_ID to local-client-id and local-client-secret, respectively, will disable making API calls to the supergood.ai server and instead log the payloads to the local console.

3. Monitor your API calls

You're all set to use Supergood!

Head back to your dashboard to start monitoring your API calls and receiving reports.

Links