123456789_123456789_123456789_123456789_123456789_

Class: OptionParser::Switch::RequiredArgument

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: OptionParser::Switch
Defined in: lib/optparse.rb

Overview

::OptionParser::Switch that takes an argument.

Class Method Summary

::OptionParser::Switch - Inherited

.guess

Guesses argument style from #arg.

.incompatible_argument_styles, .new, .pattern

Instance Attribute Summary

Instance Method Summary

::OptionParser::Switch - Inherited

#summarize

Produces the summary text.

#switch_name

Main name of the switch.

#add_banner, #compsys, #match_nonswitch?,
#conv_arg

Parses argument, converts and returns #arg, #block and result of conversion.

#parse_arg

Parses #arg and returns rest of #arg and matched portion to the argument pattern.

Constructor Details

This class inherits a constructor from OptionParser::Switch

Instance Method Details

#parse(arg, argv)

Raises an exception if argument is not present.

[ GitHub ]

  
# File 'lib/optparse.rb', line 706

def parse(arg, argv)
  unless arg
    raise MissingArgument if argv.empty?
    arg = argv.shift
  end
  conv_arg(*parse_arg(arg, &method(:raise)))
end