2 This directory contains contains the Ruby SDK.
4 ## Installation instructions
6 You can build the gem with the following command:
8 gem build arvados.gemspec
10 and install it like this:
12 gem install ./arvados-0.1.0.gem
18 ENV['ARVADOS_API_HOST'] = 'arvados.local'
19 ENV['ARVADOS_API_TOKEN'] = 'qwertyuiopasdfghjklzxcvbnm1234567890abcdefghijklmn'
22 arv = Arvados.new( { :suppress_ssl_warnings => false } )
24 cr_list = arv.container_request.list(where:{})
25 puts cr_list[:items].first.inspect
27 cr = arv.container_request.get(uuid:"zzzzz-xvhdp-fkkbrl98u3pk87m")