In Files

  • optparse/ac.rb

OptionParser::AC

Constants

ARG_CONV

Public Instance Methods

ac_arg_disable(name, help_string, &block) click to toggle source
 
               # File optparse/ac.rb, line 37
def ac_arg_disable(name, help_string, &block)
  _ac_arg_enable("disable", name, help_string, block)
end
            
ac_arg_enable(name, help_string, &block) click to toggle source
 
               # File optparse/ac.rb, line 33
def ac_arg_enable(name, help_string, &block)
  _ac_arg_enable("enable", name, help_string, block)
end
            
ac_arg_with(name, help_string, &block) click to toggle source
 
               # File optparse/ac.rb, line 41
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
            
There is an updated format of the API docs for this version here.