Method: Fission::Command#summary

Defined in:
lib/fission/command.rb

#summaryObject

Internal: Summmary of the command. This is to be implemented by any class which inherits from this class.

Examples

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

Returns a String summary of the command.

Raises:

  • (NotImplementedError)


77
78
79
# File 'lib/fission/command.rb', line 77

def summary
  raise NotImplementedError
end