类 OptionParser::AC

类似于 autoconf 的选项。

公共实例方法

ac_arg_disable(name, help_string, &block) 单击切换源代码

定义 --enable / --disable 风格的选项

在帮助信息中显示为 --disable-name

# File optparse/ac.rb, line 51
def ac_arg_disable(name, help_string, &block)
  _ac_arg_enable("disable", name, help_string, block)
end
ac_arg_enable(name, help_string, &block) 单击切换源代码

定义 --enable / --disable 风格的选项

在帮助信息中显示为 --enable-name

# File optparse/ac.rb, line 44
def ac_arg_enable(name, help_string, &block)
  _ac_arg_enable("enable", name, help_string, block)
end
ac_arg_with(name, help_string, &block) 单击切换源代码

定义 --with / --without 风格的选项

在帮助信息中显示为 --with-name

# File optparse/ac.rb, line 58
def ac_arg_with(name, help_string, &block)
  _check_ac_args(name, block)

  sdesc = []
  ldesc = ["--with-#{name}"]
  desc = [help_string]
  q = name.downcase
  with = Switch::PlacedArgument.new(*search(:atype, String), sdesc, ldesc, nil, desc, block)
  without = Switch::NoArgument.new(nil, proc {}, sdesc, ldesc, nil, desc, block)
  top.append(with, [], ["with-" + q], without, ['without-' + q])
  with
end