class OptionParser::Switch::NoArgument

Switch 不接受任何参数。

公共类方法

incompatible_argument_styles(*) 点击切换源代码
# File lib/optparse.rb, line 713
def self.incompatible_argument_styles(*)
end
pattern() 点击切换源代码
# File lib/optparse.rb, line 716
def self.pattern
  Object
end

公共实例方法

parse(arg, argv) { |NeedlessArgument, arg| ... } 点击切换源代码

如果给出任何参数,则会引发异常。

# File lib/optparse.rb, line 708
def parse(arg, argv)
  yield(NeedlessArgument, arg) if arg
  conv_arg(arg)
end