Support for the Ruby 2.4 series has ended. See here for reference.
RuntimeError
Base class of exceptions from OptionParser
.
# File optparse.rb, line 1994 def inspect "#<#{self.class}: #{args.join(' ')}>" end
Default stringizing method to emit standard error message.
# File optparse.rb, line 2001 def message reason + ': ' + args.join(' ') end
Returns error reason. Override this for I18N.
# File optparse.rb, line 1990 def reason @reason || self.class::Reason end
Pushes back erred argument(s) to argv
.
# File optparse.rb, line 1962 def recover(argv) argv[0, 0] = @args argv end
# File optparse.rb, line 1974 def set_backtrace(array) super(self.class.filter_backtrace(array)) end