Class: OptionParser::Switch::OptionalArgument
- Inherits:
-
OptionParser::Switch
- Object
- OptionParser::Switch
- OptionParser::Switch::OptionalArgument
- Defined in:
- lib/optparse.rb
Overview
Switch that can omit argument.
Instance Attribute Summary
Attributes inherited from OptionParser::Switch
#arg, #block, #conv, #desc, #long, #pattern, #short
Instance Method Summary collapse
-
#parse(arg, argv, &error) ⇒ Object
Parses argument if given, or uses default value.
Methods inherited from OptionParser::Switch
#add_banner, #compsys, guess, incompatible_argument_styles, #initialize, #match_nonswitch?, pattern, #summarize, #switch_name
Constructor Details
This class inherits a constructor from OptionParser::Switch
Instance Method Details
#parse(arg, argv, &error) ⇒ Object
Parses argument if given, or uses default value.
543 544 545 546 547 548 549 |
# File 'lib/optparse.rb', line 543 def parse(arg, argv, &error) if arg conv_arg(*parse_arg(arg, &error)) else conv_arg(arg) end end |