The TempoDB Ruby API Client makes calls to the TempoDB API. The module is available as a gem.
gem build tempodb.gemspec
gem install tempodb-1.0.0.gem
require 'tempodb'
client = TempoDB::Client.new('database_id', 'api_key', 'api_secret')
client.create_series("temp-1')
client.list_series
For more example usage, please see the TempoDB API documentation, which includes Ruby client examples for all endpoints.
There is also a generated RDoc API documentation which you can use as a reference.