class Ohmage::CLI

Public Instance Methods

hi() click to toggle source
# File lib/ohmage/cli.rb, line 177
def hi
  conf = Ohmage.client
  puts 'Server: ' + conf.server_url
  puts 'Current User: ' + conf.user
  conf.server_config.each do |k, v|
    puts k.to_s + ': ' + v.to_s
  end
end