Return a download reporter object chosen from the current verbosity
# File lib/rubygems/user_interaction.rb, line 539
def download_reporter(*args)
case Gem.configuration.verbose
when nil, false
SilentDownloadReporter.new(@outs, *args)
else
VerboseDownloadReporter.new(@outs, *args)
end
end