module CommandKit::Help

Defines a place-holder {Help#help help} method.

## Examples

class MyCmd
  include CommandKit::Help

  def help
    puts "..."
  end
end

MyCmd.help

Public Instance Methods

help() click to toggle source

Prints `–help` information.

@abstract

@api public

# File lib/command_kit/help.rb, line 68
def help
end