From a76b1f5fe49db95a52a99924dec98d5e675400a7 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Sep 2005 22:56:15 +0000 Subject: * lib/optparse.rb (RequiredArgument#parse): not consume unmatched argument. fixed [ruby-dev:27316] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/optparse.rb | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'lib') diff --git a/lib/optparse.rb b/lib/optparse.rb index 21d07c466..7135c79b3 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -454,11 +454,14 @@ class OptionParser # Raises an exception if argument is not present. # def parse(arg, argv, &error) - unless arg - raise MissingArgument if argv.empty? - arg = argv.shift + opt = (val = parse_arg(val, &error))[1] + val = conv_arg(*val) + if opt and !arg + argv.shift + else + val[0] = nil end - conv_arg(*parse_arg(arg, &error)) + val end end @@ -479,24 +482,17 @@ class OptionParser end # - # ? + # Switch that takes an argument, which does not begin with '-'. # - class PlacedArgument < self + class PlacedArgument < RequiredArgument # - # ? + # Returns nil if argument is not present or begins with '-'. # def parse(arg, argv, &error) if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0])) return nil, block, nil end - opt = (val = parse_arg(val, &error))[1] - val = conv_arg(*val) - if opt and !arg - argv.shift - else - val[0] = nil - end - val + super end end end -- cgit