summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-02-08 23:08:09 +1100
committerAndre Arko <andre@arko.net>2015-02-08 23:10:12 +1100
commit135ef0053b33e71b1961e8c9fe16a07e8a985ccb (patch)
tree434341d7e1c5276834928d955808993eb316f82a
parenta35a5bdfce632b38e123bc6626692b91cdbcbf0a (diff)
downloadbundler-135ef0053b33e71b1961e8c9fe16a07e8a985ccb.tar.gz
fix dot output while fetching metadata
-rw-r--r--lib/bundler/source/rubygems.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bundler/source/rubygems.rb b/lib/bundler/source/rubygems.rb
index 01d83a5773..c546bd1104 100644
--- a/lib/bundler/source/rubygems.rb
+++ b/lib/bundler/source/rubygems.rb
@@ -310,7 +310,9 @@ module Bundler
begin
idxcount = idx.size
api_fetchers.each do |f|
+ Bundler.ui.info "Fetching version metadata from #{f.uri}", Bundler.ui.debug?
idx.use f.specs(idx.dependency_names, self), true
+ Bundler.ui.info "" if !Bundler.ui.debug? # new line now that the dots are over
end
end until idxcount == idx.size
@@ -322,7 +324,7 @@ module Bundler
# if there are any cross-site gems we missed, get them now
api_fetchers.each do |f|
- Bundler.ui.info "Fetching additional metadata from #{f.uri}", Bundler.ui.debug?
+ Bundler.ui.info "Fetching dependency metadata from #{f.uri}", Bundler.ui.debug?
idx.use f.specs(unmet, self)
Bundler.ui.info "" if !Bundler.ui.debug? # new line now that the dots are over
end if unmet.any?