Class: OptionParser::Switch::NoArgument

Inherits:
OptionParser::Switch show all
Defined in:
lib/optparse.rb

Overview

Switch that takes no arguments.

Instance Attribute Summary

Attributes inherited from OptionParser::Switch

#arg, #block, #conv, #desc, #long, #pattern, #short

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from OptionParser::Switch

#add_banner, #compsys, guess, #initialize, #match_nonswitch?, #summarize, #switch_name

Constructor Details

This class inherits a constructor from OptionParser::Switch

Class Method Details

.incompatible_argument_stylesObject



684
685
# File 'lib/optparse.rb', line 684

def self.incompatible_argument_styles(*)
end

.patternObject



687
688
689
# File 'lib/optparse.rb', line 687

def self.pattern
  Object
end

Instance Method Details

#parse(arg, argv) {|NeedlessArgument, arg| ... } ⇒ Object

Raises an exception if any arguments given.

Yields:



679
680
681
682
# File 'lib/optparse.rb', line 679

def parse(arg, argv)
  yield(NeedlessArgument, arg) if arg
  conv_arg(arg)
end