summaryrefslogtreecommitdiff
path: root/lib/bundler/fetcher.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-10-02 23:44:58 -0700
committerAndre Arko <andre@arko.net>2013-10-03 16:37:54 -0700
commit45e02a73efd88f9915b7f00446b1fbb2700deee8 (patch)
treea9214a6c281f92560507baf6e7e8319e670a8ed5 /lib/bundler/fetcher.rb
parentd0eb3fd02e40c8aac97a152ba5703b602e9c60c5 (diff)
downloadbundler-45e02a73efd88f9915b7f00446b1fbb2700deee8.tar.gz
move messaging into fetcher orchestration code
Diffstat (limited to 'lib/bundler/fetcher.rb')
-rw-r--r--lib/bundler/fetcher.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/bundler/fetcher.rb b/lib/bundler/fetcher.rb
index 69d88ec218..2253c6140c 100644
--- a/lib/bundler/fetcher.rb
+++ b/lib/bundler/fetcher.rb
@@ -156,17 +156,13 @@ module Bundler
use_full_source_index = !gem_names || @remote_uri.scheme == "file" || Bundler::Fetcher.disable_endpoint
if gem_names && use_api
- Bundler.ui.info "Fetching gem metadata from #{uri}", Bundler.ui.debug?
specs = fetch_remote_specs(gem_names)
- # new line now that the dots are over
- Bundler.ui.info "" if specs && !Bundler.ui.debug?
end
if specs.nil?
# API errors mean we should treat this as a non-API source
@use_api = false
- Bundler.ui.info "Fetching source index from #{uri}"
specs = Bundler::Retry.new("source fetch").attempts do
fetch_all_remote_specs
end