Method: JoyentCLI#list_datasets

Defined in:
bin/joyent

#list_datasetsObject



102
103
104
105
106
107
# File 'bin/joyent', line 102

def list_datasets
  conn = get_connection
  conn.datasets.list.each do |d|
    puts "#{d.name}: #{d.os} (#{d.urn})"
  end
end