Method: OptionParser::ParseError#set_option

Defined in:
lib/optparse.rb

#set_option(opt, eq) ⇒ Object



2058
2059
2060
2061
2062
2063
2064
2065
# File 'lib/optparse.rb', line 2058

def set_option(opt, eq)
  if eq
    @args[0] = opt
  else
    @args.unshift(opt)
  end
  self
end