method
set_option
v1_9_3_392 -
Show latest stable
- Class:
OptionParser::ParseError
set_option(opt, eq)public
No documentation available.
# File lib/optparse.rb, line 1756
def set_option(opt, eq)
if eq
@args[0] = opt
else
@args.unshift(opt)
end
self
end