class Pod::Command::Help

def help_command

def help_command
  @help_command
end

def initialize(argv)

def initialize(argv)
  @help_command = Pod::Command.parse(argv)
  super
end

def run

def run
  help_command.help!
end