Cryptsy::Ruby
A first stab at a Ruby implementation of the Cryptsy API.
NOTE: Tests have credentials removed to protect the innocent, and thus private API tests will fail out of the box.
Installation
Add this line to your application's Gemfile:
gem 'cryptsy-api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cryptsy-api
Usage
require 'cryptsy/api'
cryptsy = Cryptsy::API::Client.new(key, secret)
e.g. cryptsy.getinfo
NOTE: Public APIs don't require a key or secret
All apis have been implemented except the deprecated v1 marketdata
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request