In Files

  • rubygems/optparse/lib/optparse.rb

Class/Module Index [+]

Quicksearch

Gem::OptionParser::ParseError

Base class of exceptions from Gem::OptionParser.

Constants

Reason

Reason which caused the error.

Attributes

additional[RW]
args[R]
reason[W]

Public Class Methods

filter_backtrace(array) click to toggle source
 
               # File rubygems/optparse/lib/optparse.rb, line 2045
def self.filter_backtrace(array)
  unless $DEBUG
    array.delete_if(&%r"\A#{Regexp.quote(__FILE__)}:"o.method(:=~))
  end
  array
end
            
new(*args, additional: nil) click to toggle source
 
               # File rubygems/optparse/lib/optparse.rb, line 2026
def initialize(*args, additional: nil)
  @additional = additional
  @arg0, = args
  @args = args
  @reason = nil
end
            

Public Instance Methods

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

Default stringizing method to emit standard error message.

 
               # File rubygems/optparse/lib/optparse.rb, line 2079
def message
  "#{reason}: #{args.join(' ')}#{additional[@arg0] if additional}"
end
            
Also aliased as: to_s
reason() click to toggle source

Returns error reason. Override this for I18N.

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

Pushes back erred argument(s) to argv.

 
               # File rubygems/optparse/lib/optparse.rb, line 2040
def recover(argv)
  argv[0, 0] = @args
  argv
end
            
set_backtrace(array) click to toggle source
 
               # File rubygems/optparse/lib/optparse.rb, line 2052
def set_backtrace(array)
  super(self.class.filter_backtrace(array))
end
            
set_option(opt, eq) click to toggle source
 
               # File rubygems/optparse/lib/optparse.rb, line 2056
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