Module: OptionParser::Arguable
- Defined in:
- lib/llm/shell/internal/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, 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
optisfalseornil, methods OptionParser::Arguable#options and OptionParser::Arguable#options= are undefined. -
#order!(**keywords, &blk) ⇒ Object
Parses
selfdestructively in order and returnsselfcontaining the rest arguments left unparsed. -
#parse!(**keywords) ⇒ Object
Parses
selfdestructively and returnsselfcontaining the rest arguments left unparsed. -
#permute!(**keywords) ⇒ Object
Parses
selfdestructively in permutation mode and returnsselfcontaining the rest arguments left unparsed.
Class Method Details
.extend_object(obj) ⇒ Object
Initializes instance variable.
2443 2444 2445 2446 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2443 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
2436 2437 2438 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2436 def getopts(*args, symbolize_names: false, **keywords) .getopts(self, *args, symbolize_names: symbolize_names, **keywords) end |
#initialize(*args) ⇒ Object
:nodoc:
2448 2449 2450 2451 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2448 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.
2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2395 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.
2378 2379 2380 2381 2382 2383 2384 2385 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2378 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.
2411 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2411 def order!(**keywords, &blk) .order!(self, **keywords, &blk) end |
#parse!(**keywords) ⇒ Object
Parses self destructively and returns self containing the rest arguments left unparsed.
2423 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2423 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.
2417 |
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 2417 def permute!(**keywords) .permute!(self, **keywords) end |