Method: CommandMapper::Command.subcommands
- Defined in:
- lib/command_mapper/command.rb
permalink .subcommands ⇒ Hash{Symbol => Command.class}
All defined subcommands.
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 |