add_specific_extra_args(cmd,args)
public
Add a list of extra arguments for the given command.
args may be an array or a string to be split on white space.
# File lib/rubygems/command.rb, line 92
def self.add_specific_extra_args(cmd,args)
args = args.split(/\s+/) if args.kind_of? String
specific_extra_args_hash[cmd] = args
end