class Armrest::CLI

Public Instance Methods

auth(type=nil) click to toggle source
# File lib/armrest/cli.rb, line 28
def auth(type=nil)
  Auth.new(options.merge(type: type)).run
end
completion(*params) click to toggle source
# File lib/armrest/cli.rb, line 34
def completion(*params)
  Completer.new(CLI, *params).run
end
completion_script() click to toggle source
# File lib/armrest/cli.rb, line 40
def completion_script
  Completer::Script.generate
end
version() click to toggle source
# File lib/armrest/cli.rb, line 45
def version
  puts VERSION
end