In Files

  • optparse.rb

Parent

OptionParser::ParseError

Base class of exceptions from OptionParser.

Constants

Reason

Reason which caused the error.

Attributes

args[R]
reason[W]

Public Class Methods

new(*args) click to toggle source
 
               # File optparse.rb, line 1597
def initialize(*args)
  @args = args
  @reason = nil
end
            

Public Instance Methods

inspect() click to toggle source
 
               # File optparse.rb, line 1629
def inspect
  "#<#{self.class.to_s}: #{args.join(' ')}>"
end
            
message() click to toggle source

Default stringizing method to emit standard error message.

 
               # File optparse.rb, line 1636
def message
  reason + ': ' + args.join(' ')
end
            
Also aliased as: to_s
reason() click to toggle source

Returns error reason. Override this for I18N.

 
               # File optparse.rb, line 1625
def reason
  @reason || self.class::Reason
end
            
recover(argv) click to toggle source

Pushes back erred argument(s) to argv.

 
               # File optparse.rb, line 1608
def recover(argv)
  argv[0, 0] = @args
  argv
end
            
set_option(opt, eq) click to toggle source
 
               # File optparse.rb, line 1613
def set_option(opt, eq)
  if eq
    @args[0] = opt
  else
    @args.unshift(opt)
  end
  self
end
            
to_s() click to toggle source
Alias for: message