Method: CommandMapper::Command.has_argument?
- Defined in:
- lib/command_mapper/command.rb
.has_argument?(name) ⇒ Boolean
Determines if an argument with the given name has been defined.
471 472 473 |
# File 'lib/command_mapper/command.rb', line 471 def self.has_argument?(name) arguments.has_key?(name) end |