Module: CommandKit::Help

Extended by:
ModuleMethods
Included in:
Arguments, Command, Description, Examples, Man, Usage
Defined in:
lib/command_kit/help.rb,
lib/command_kit/help/man.rb

Overview

Defines a place-holder help method.

Examples

class MyCmd
  include CommandKit::Help

  def help
    puts "..."
  end
end

MyCmd.help

Defined Under Namespace

Modules: ClassMethods, Man, ModuleMethods

Instance Method Summary collapse

Methods included from ModuleMethods

included

Instance Method Details

#helpObject

This method is abstract.

Prints --help information.



70
71
# File 'lib/command_kit/help.rb', line 70

def help
end