module OptionParser::Arguable

Extends command line arguments array (ARGV) to parse itself.

Public Class Methods

extend_object(obj) Show source
# File lib/optparse.rb, line 2135
def self.extend_object(obj)
  super
  obj.instance_eval {@optparse = nil}
end

Initializes instance variable.

Calls superclass method
new(*args) Show source
# File lib/optparse.rb, line 2139
def initialize(*args)
  super
  @optparse = nil
end
Calls superclass method

Public Instance Methods

getopts(*args) Show source
# File lib/optparse.rb, line 2128
def getopts(*args)
  options.getopts(self, *args)
end

Substitution of getopts is possible as follows. Also see OptionParser#getopts.

def getopts(*args)
  ($OPT = ARGV.getopts(*args)).each do |opt, val|
    eval "$OPT_#{opt.gsub(/[^A-Za-z0-9_]/, '_')} = val"
  end
rescue OptionParser::ParseError
end
options() { |optparse| ... } Show source
# File lib/optparse.rb, line 2087
def options
  @optparse ||= OptionParser.new
  @optparse.default_argv = self
  block_given? or return @optparse
  begin
    yield @optparse
  rescue ParseError
    @optparse.warn $!
    nil
  end
end

Actual OptionParser object, automatically created if nonexistent.

If called with a block, yields the OptionParser object and returns the result of the block. If an OptionParser::ParseError exception occurs in the block, it is rescued, a error message printed to STDERR and nil returned.

options=(opt) Show source
# File lib/optparse.rb, line 2070
def options=(opt)
  unless @optparse = opt
    class << self
      undef_method(:options)
      undef_method(:options=)
    end
  end
end

Sets OptionParser object, when opt is false or nil, methods #options and #options= are undefined. Thus, there is no ways to access the OptionParser object via the receiver object.

order!(&blk) Show source
# File lib/optparse.rb, line 2103
def order!(&blk) options.order!(self, &blk) end

Parses self destructively in order and returns self containing the rest arguments left unparsed.

parse!() Show source
# File lib/optparse.rb, line 2115
def parse!() options.parse!(self) end

Parses self destructively and returns self containing the rest arguments left unparsed.

permute!() Show source
# File lib/optparse.rb, line 2109
def permute!() options.permute!(self) end

Parses self destructively in permutation mode and returns self containing the rest arguments left unparsed.

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.