merge_options(new_options)
public
Merge a set of command options with the set of default options (without
modifying the default option hash).
# File lib/rubygems/command.rb, line 364
def merge_options(new_options)
@options = @defaults.clone
new_options.each do |k,v| @options[k] = v end
end