This directory contains contains the Ruby SDK.

## Installation instructions

You can build the gem with the following command:

gem build arvados.gemspec

and install it like this:

gem install ./arvados-0.1.0.gem

## Code example

#!/usr/bin/env ruby

ENV = ‘arvados.local’ ENV = ‘qwertyuiopasdfghjklzxcvbnm1234567890abcdefghijklmn’

require ‘arvados’ arv = Arvados.new( { :suppress_ssl_warnings => false } )

pt_list = arv.pipeline_template.list(where:{}) puts pt_list.first.inspect

pt = arv.pipeline_template.get(uuid:“9zb4a-p5p6p-fkkbrl98u3pk87m”) puts pt.inspect