class OptionParser::AC
Опции в стиле autoconf.
Открытые методы экземпляра
Исходный код
# File lib/optparse/ac.rb, line 51
def ac_arg_disable(name, help_string, &block)
_ac_arg_enable("disable", name, help_string, block)
end Определяет опцию в стиле --enable / --disable.
Выводится как --disable-name в сообщении справки.
Исходный код
# File lib/optparse/ac.rb, line 44
def ac_arg_enable(name, help_string, &block)
_ac_arg_enable("enable", name, help_string, block)
end Определяет опцию в стиле --enable / --disable.
Выводится как --enable-name в сообщении справки.
Исходный код
# File lib/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 Определяет опцию в стиле --with / --without.
Выводится как --with-name в сообщении справки.
Ruby Core © 1993–2024 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.