args | [R] | Internal: Returns the Array arguments of the command. |
options | [R] | Internal: Returns the OpenStruct options of the command. |
Internal: Helper method to return the help text of a command. This is intended to be used by a command class which inherits from this class. This method will call the ‘option_parser’ method which must be defined in any class which inherits from this class.
Examples
Fission::Command::Suspend.help
Returns a String of the output parser text.
Internal: Helper method to determine the command name of command class. This should only be called against descendants of this class.
xamples:
Fission::Command::SnapshotList.new.command_name # => 'snapshot list'
Returns the command name as a String.
Internal: Primary method for performing an action within a command.
Examples
command.execute
Returns nothing