Module: OptionParser::Arguable
- Defined in:
- 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, symbolize_names: false, **keywords) ⇒ Object
Substitution of getopts is possible as follows.
-
#initialize(*args) ⇒ Object
:nodoc:.
-
#options ⇒ Object
Actual OptionParser object, automatically created if nonexistent.
-
#options=(opt) ⇒ Object
Sets OptionParser object, when
opt
isfalse
ornil
, methods OptionParser::Arguable#options and OptionParser::Arguable#options= are undefined. -
#order!(**keywords, &blk) ⇒ Object
Parses
self
destructively in order and returnsself
containing the rest arguments left unparsed. -
#parse!(**keywords) ⇒ Object
Parses
self
destructively and returnsself
containing the rest arguments left unparsed. -
#permute!(**keywords) ⇒ 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.
2403 2404 2405 2406 |
# File 'lib/optparse.rb', line 2403 def self.extend_object(obj) super obj.instance_eval {@optparse = nil} end |
Instance Method Details
#getopts(*args, symbolize_names: false, **keywords) ⇒ Object
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
2396 2397 2398 |
# File 'lib/optparse.rb', line 2396 def getopts(*args, symbolize_names: false, **keywords) .getopts(self, *args, symbolize_names: symbolize_names, **keywords) end |
#initialize(*args) ⇒ Object
:nodoc:
2408 2409 2410 2411 |
# File 'lib/optparse.rb', line 2408 def initialize(*args) # :nodoc: super @optparse = nil end |
#options ⇒ Object
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.
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 |
# File 'lib/optparse.rb', line 2355 def @optparse ||= 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 OptionParser object, when opt
is false
or nil
, methods OptionParser::Arguable#options and OptionParser::Arguable#options= are undefined. Thus, there is no ways to access the OptionParser object via the receiver object.
2338 2339 2340 2341 2342 2343 2344 2345 |
# File 'lib/optparse.rb', line 2338 def (opt) unless @optparse = opt class << self undef_method(:options) undef_method(:options=) end end end |
#order!(**keywords, &blk) ⇒ Object
Parses self
destructively in order and returns self
containing the rest arguments left unparsed.
2371 |
# File 'lib/optparse.rb', line 2371 def order!(**keywords, &blk) .order!(self, **keywords, &blk) end |
#parse!(**keywords) ⇒ Object
Parses self
destructively and returns self
containing the rest arguments left unparsed.
2383 |
# File 'lib/optparse.rb', line 2383 def parse!(**keywords) .parse!(self, **keywords) end |
#permute!(**keywords) ⇒ Object
Parses self
destructively in permutation mode and returns self
containing the rest arguments left unparsed.
2377 |
# File 'lib/optparse.rb', line 2377 def permute!(**keywords) .permute!(self, **keywords) end |