Module: Gem::OptionParser::Arguable

Defined in:
lib/rubygems/vendor/optparse/lib/optparse.rb

Overview

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extend_object(obj) ⇒ Object

Initializes instance variable.



2308
2309
2310
2311
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2308

def self.extend_object(obj)
  super
  obj.instance_eval {@optparse = nil}
end

Instance Method Details

#getopts(*args, symbolize_names: false) ⇒ Object

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

def getopts(*args)
  ($OPT = ARGV.getopts(*args)).each do |opt, val|
    eval "$OPT_#{opt.gsub(/[^A-Za-z0-9_]/, '_')} = val"
  end
rescue Gem::OptionParser::ParseError
end


2301
2302
2303
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2301

def getopts(*args, symbolize_names: false)
  options.getopts(self, *args, symbolize_names: symbolize_names)
end

#initialize(*args) ⇒ Object



2312
2313
2314
2315
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2312

def initialize(*args)
  super
  @optparse = nil
end

#optionsObject

Actual Gem::OptionParser object, automatically created if nonexistent.

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



2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2260

def options
  @optparse ||= Gem::OptionParser.new
  @optparse.default_argv = self
  block_given? or return @optparse
  begin
    yield @optparse
  rescue ParseError
    @optparse.warn $!
    nil
  end
end

#options=(opt) ⇒ Object

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



2243
2244
2245
2246
2247
2248
2249
2250
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2243

def options=(opt)
  unless @optparse = opt
    class << self
      undef_method(:options)
      undef_method(:options=)
    end
  end
end

#order!(&blk) ⇒ Object

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



2276
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2276

def order!(&blk) options.order!(self, &blk) end

#parse!Object

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



2288
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2288

def parse!() options.parse!(self) end

#permute!Object

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



2282
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 2282

def permute!() options.permute!(self) end