The Ruby gem wrapper for Bitok! This gem is actively being developed. Be sure to check the branch for the version you're using.
To install, type:
gem install bitokAdd to your Gemfile:
gem "bitok", "~> 0.0.1"Run bundle install
API keys must be configured in the gem setup. You can do this anywhere in your application before you make API calls using the gem.
Bitok.configure do |config|
config.api_key = 'api_key'
config.private_key = 'private_key'
config.base_url = 'url'
endconfig.base_url - the default is set to 'https://kyt-api.bitok.org'
# To get supported network
Bitok::API.get_networksBug reports and pull requests are welcome.
- Please be sure to include tests with your PRs.
- Run
bundle exec rubocopto ensure style with the rest of the project