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