DeustoRB is a simple client for the WebLab Deusto remote laboratory platform.
Based on the Python version.
Download the repo and make your changes (add some tests for them). Then, you can run bundle exec rake
and
the test suite will run. If it's red, fix it.
Add this line to your application's Gemfile:
gem 'deustorb'
And then execute:
$ bundle
Or install it yourself as:
$ gem install deustorb
client = Deustorb::Client.new('weblab.deusto.server.url.com')
client.login('username', 'password') # => {"result"=>{"id"=>"some-sesion-id"}, "is_exception"=>false}
client.list_experiments # => huge hash with experiments
- 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