handle_options(args)
public
Handle the given list of arguments by parsing them and
recording the results.
# File lib/rubygems/command.rb, line 372
def handle_options(args)
args = add_extra_args(args)
@options = Marshal.load Marshal.dump @defaults # deep copy
parser.parse!(args)
@options[:args] = args
end