Sha256: 8ac7a28516ff342c11f345864389b612b518283672cc77650d3b133022b6f094
Contents?: true
Size: 1.94 KB
Versions: 1
Compression:
Stored size: 1.94 KB
Contents
module AMEE module Shell def amee_help puts "AMEE shell - version #{AMEE::VERSION::STRING}" puts "--------------------------" puts "Commands:" puts " ls - display contents of current category." puts " cd 'path' - change category. Path must be a quoted string. You can use things like '/data', '..', or 'subcategory'." puts " pwd - display current category path." puts " cat 'name' - display contents of data item called 'name' within the current category." puts " amee_help - display this help text." end def ls puts "Categories:" @@category.children.each do |c| puts " - #{c[:path]}" end puts "Items:" @@category.items.each do |i| puts " - #{i[:path]} (#{i[:label]})" end nil end def pwd @@category.full_path end def cd(path) if path == '..' path_components = @@category.full_path.split('/') path = path_components.first(path_components.size - 1).join('/') elsif !path.match(/^\/.*/) path = @@category.full_path + '/' + path end @@category = AMEE::Data::Category.get($connection, path) @@category.full_path end def cat(name) item = @@category.items.detect { |i| i[:path].match("^#{name}") } fullpath = "#{@@category.full_path}/#{item[:path]}" item = AMEE::Data::Item.get($connection, fullpath) puts fullpath puts "Label: #{item.label}" puts "Values:" item.values.each do |v| puts " - #{v[:name]}: #{v[:value]}" end nil end end end require 'amee' include AMEE::Shell # Set up connection $connection = AMEE::Connection.new(ENV['AMEE_SERVER'], ENV['AMEE_USERNAME'], ENV['AMEE_PASSWORD']) if $connection.valid? # Change to root of data api to get going cd '/data' # Display AMEE details amee_help else puts "Can't connect to AMEE - please check details" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
Floppy-amee-0.1.0 | lib/amee/shell.rb |