This is a ruby wrapper for Tanda API.
To install, just add tandarb
to your Gemfile.
Generate a token in your My token page.
# Fetch all users
user_client = Tandarb::User.new(token)
users = user_client.all
# Create new user
user_client = Tandarb::User.new(token)
user = user_client.create(body)
# Create new datastream
datastream_client = Tandarb::Datastreams.new(token)
datastream = datastream_client.create(body)
# Create new storestats
storestats_client = Tandarb::Storestats.new(token)
storestat = storestats_client.create(body, datastream_id)
Bug reports and pull requests are welcome on GitHub at https://github.com/iamarmanjon/tandarb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Tandarb project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.