Base class of exceptions from OptionParser.
Reason which caused the error.
# File rake/lib/optparse.rb, line 1745 def self.filter_backtrace(array) unless $DEBUG array.delete_if(&%r\A#{Regexp.quote(__FILE__)}:".method(:=~)) end array end
# File rake/lib/optparse.rb, line 1729 def initialize(*args) @args = args @reason = nil end
# File rake/lib/optparse.rb, line 1772 def inspect "#<#{self.class.to_s}: #{args.join(' ')}>" end
Default stringizing method to emit standard error message.
# File rake/lib/optparse.rb, line 1779 def message reason + ': ' + args.join(' ') end
Returns error reason. Override this for I18N.
# File rake/lib/optparse.rb, line 1768 def reason @reason || self.class::Reason end
Pushes back erred argument(s) to argv
.
# File rake/lib/optparse.rb, line 1740 def recover(argv) argv[0, 0] = @args argv end
# File rake/lib/optparse.rb, line 1752 def set_backtrace(array) super(self.class.filter_backtrace(array)) end
# File rake/lib/optparse.rb, line 1756 def set_option(opt, eq) if eq @args[0] = opt else @args.unshift(opt) end self end