Module: CommandKit::Help
- Extended by:
- ModuleMethods
- 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
-
#help ⇒ Object
abstract
Prints
--help
information.
Methods included from ModuleMethods
Instance Method Details
#help ⇒ Object
This method is abstract.
Prints --help
information.
70 71 |
# File 'lib/command_kit/help.rb', line 70 def help end |