#Spartacus
Ruby toolkit for the Bloc API.
##Quick start
Install via Rubygems
gem install spartacus
... or add to your Gemfile
gem "spartacus", "~> 0.2.7"
Create a new Spartacus
client using your Bloc username and password:
sc = Spartacus.new("[email protected]", "gooderpassword")
Then use the client to make requests:
sc.update_checkpoint(129, {name: "New Checkpoint Name"})
All the documentation lives here.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
This gem is inspired by octokit