class Awspec::CLI

Public Instance Methods

help(version = nil) click to toggle source
Calls superclass method
# File lib/awspec/cli.rb, line 19
def help(version = nil)
  if version
    puts Awspec::VERSION
  else
    super
  end
end
init() click to toggle source
# File lib/awspec/cli.rb, line 10
def init
  Awspec::Setup.run
end