class Fission::Command

def summary

Returns a String summary of the command.

# => 'This command does x and y'
command.summary
Examples

class which inherits from this class.
Internal: Summmary of the command. This is to be implemented by any
def summary
  raise NotImplementedError
end