Method: CommandMapper::Command.options

Defined in:
lib/command_mapper/command.rb

.optionsHash{Symbol => Option}

All defined options.

Returns:



329
330
331
332
333
334
335
# File 'lib/command_mapper/command.rb', line 329

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