Method: CommandMapper::Command.arguments

Defined in:
lib/command_mapper/command.rb

.argumentsHash{Symbol => Argument}

All defined options.

Returns:

  • (Hash{Symbol => Argument})

    The mapping of argument names and Argument objects.


450
451
452
453
454
455
456
# File 'lib/command_mapper/command.rb', line 450

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