Module: OptionParser::Arguable
- Defined in:
- lib/MrMurano/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 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!(&blk) ⇒ Object
Parses
selfdestructively in order and returnsselfcontaining the rest arguments left unparsed. -
#parse! ⇒ Object
Parses
selfdestructively and returnsselfcontaining the rest arguments left unparsed. -
#permute! ⇒ Object
Parses
selfdestructively in permutation mode and returnsselfcontaining the rest arguments left unparsed.
Class Method Details
.extend_object(obj) ⇒ Object
Initializes instance variable.
2169 2170 2171 2172 |
# File 'lib/MrMurano/optparse.rb', line 2169 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 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
2162 2163 2164 |
# File 'lib/MrMurano/optparse.rb', line 2162 def getopts(*args) .getopts(self, *args) end |
#initialize(*args) ⇒ Object
2173 2174 2175 2176 |
# File 'lib/MrMurano/optparse.rb', line 2173 def initialize(*args) 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.
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'lib/MrMurano/optparse.rb', line 2121 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.
2104 2105 2106 2107 2108 2109 2110 2111 |
# File 'lib/MrMurano/optparse.rb', line 2104 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.
2137 |
# File 'lib/MrMurano/optparse.rb', line 2137 def order!(&blk) .order!(self, &blk) end |
#parse! ⇒ Object
Parses self destructively and returns self containing the rest arguments left unparsed.
2149 |
# File 'lib/MrMurano/optparse.rb', line 2149 def parse!() .parse!(self) end |
#permute! ⇒ Object
Parses self destructively in permutation mode and returns self containing the rest arguments left unparsed.
2143 |
# File 'lib/MrMurano/optparse.rb', line 2143 def permute!() .permute!(self) end |