class OptionParser::Switch::PlacedArgument

Switch,它接受一个不以 ‘-’ 开头或为 ‘-’ 的参数。

公共实例方法

parse(arg, argv, &error) 点击切换源代码

如果参数不存在或以 ‘-’ 开头且不为 ‘-’ 则返回 nil。

# File lib/optparse.rb, line 775
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
end