class Fission::Command

def self.help

Returns a String of the output parser text.

Fission::Command::Suspend.help

Examples

any class which inherits from this class.
This method will call the 'option_parser' method which must be defined in
intended to be used by a command class which inherits from this class.
Internal: Helper method to return the help text of a command. This is
def self.help
  self.new.option_parser.to_s
end