Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.

supergoodsystems/supergood-rb

Repository files navigation

This library is deprecated!

We started off as an observability product for third-party APIs, and realized that rather than simply pointing out problems with APIs, we need to fix them. As such, we're sunsetting our pure observability product and using it internally for the new "unofficial" APIs we now generate.

Reach out to alex@supergood.ai if you'd like to learn more, or check us out at https://supergood.ai


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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors