Method: CommandMapper::Command.subcommands

Defined in:
lib/command_mapper/command.rb

.subcommandsHash{Symbol => Command.class}

All defined subcommands.

Returns:

  • (Hash{Symbol => Command.class})

    The mapping of subcommand names and subcommand classes.

[View source]

530
531
532
533
534
535
536
# File 'lib/command_mapper/command.rb', line 530

def self.subcommands
  @subcommands ||= if superclass < Command
                     superclass.subcommands.dup
                   else
                     {}
                   end
end