summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-02-03 17:16:39 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2010-02-03 17:16:39 -0800
commit6556999d327ae2fb3397934cbca80b45f05b2ec3 (patch)
tree0b47c71c5e516e50fc0ee69314863f06e924cf14
parentc563003292bd36dc647b41016fad93d5b7324a07 (diff)
downloadbundler-6556999d327ae2fb3397934cbca80b45f05b2ec3.tar.gz
Remove Dones
-rw-r--r--lib/bundler/installer.rb5
-rw-r--r--lib/bundler/source.rb4
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 2935e2449e..ed0611eef4 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -79,7 +79,6 @@ module Bundler
end
specs = Resolver.resolve(dependencies, index, source_requirements)
- Bundler.ui.info "Done."
specs
end
@@ -119,7 +118,6 @@ module Bundler
i = source.specs
Bundler.ui.debug "Source: Processing index... "
index = i.merge(index).freeze
- Bundler.ui.debug "Done."
end
index = Index.from_installed_gems.merge(index)
@@ -128,7 +126,6 @@ module Bundler
i = source.specs
Bundler.ui.debug "Source: Processing index... "
index = i.merge(index).freeze
- Bundler.ui.debug "Done."
end
index
@@ -157,4 +154,4 @@ module Bundler
end
end
-end \ No newline at end of file
+end
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb
index 69c6cae97d..338c171120 100644
--- a/lib/bundler/source.rb
+++ b/lib/bundler/source.rb
@@ -47,7 +47,6 @@ module Bundler
spec.source = self
index << spec
end
- Bundler.ui.info "Done."
index.freeze
end
@@ -283,7 +282,6 @@ module Bundler
FileUtils.mkdir_p(cache_path.dirname)
git "clone #{uri} #{cache_path} --bare --no-hardlinks"
end
- Bundler.ui.info "Done."
end
def revision
@@ -295,4 +293,4 @@ module Bundler
end
end
end
-end \ No newline at end of file
+end