Module: Gem::OptionParser::Arguable
- Defined in:
- lib/rubygems/optparse/lib/optparse.rb
Overview
Extends command line arguments array (ARGV) to parse itself.
Class Method Summary collapse
-
.extend_object(obj) ⇒ Object
Initializes instance variable.
Instance Method Summary collapse
-
#getopts(*args) ⇒ Object
Substitution of getopts is possible as follows.
- #initialize(*args) ⇒ Object
-
#options ⇒ Object
Actual Gem::OptionParser object, automatically created if nonexistent.
-
#options=(opt) ⇒ Object
Sets Gem::OptionParser object, when
opt
isfalse
ornil
, methods Gem::OptionParser::Arguable#options and Gem::OptionParser::Arguable#options= are undefined. -
#order!(&blk) ⇒ Object
Parses
self
destructively in order and returnsself
containing the rest arguments left unparsed. -
#parse! ⇒ Object
Parses
self
destructively and returnsself
containing the rest arguments left unparsed. -
#permute! ⇒ Object
Parses
self
destructively in permutation mode and returnsself
containing the rest arguments left unparsed.
Class Method Details
.extend_object(obj) ⇒ Object
Initializes instance variable.
2286 2287 2288 2289 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2286 def self.extend_object(obj) super obj.instance_eval {@optparse = nil} end |
Instance Method Details
#getopts(*args) ⇒ 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
2279 2280 2281 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2279 def getopts(*args) .getopts(self, *args) end |
#initialize(*args) ⇒ Object
2290 2291 2292 2293 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2290 def initialize(*args) super @optparse = nil end |
#options ⇒ Object
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.
2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2238 def @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.
2221 2222 2223 2224 2225 2226 2227 2228 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2221 def (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.
2254 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2254 def order!(&blk) .order!(self, &blk) end |
#parse! ⇒ Object
Parses self
destructively and returns self
containing the rest arguments left unparsed.
2266 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2266 def parse!() .parse!(self) end |
#permute! ⇒ Object
Parses self
destructively in permutation mode and returns self
containing the rest arguments left unparsed.
2260 |
# File 'lib/rubygems/optparse/lib/optparse.rb', line 2260 def permute!() .permute!(self) end |