summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-02-03 17:19:50 -0800
committerCarl Lerche <carllerche@mac.com>2010-02-03 17:28:48 -0800
commit960fd6cae5c8318d6ce1ef7c145c2afb2d695c36 (patch)
treedb1c9140295a8d6f87e917032c7fdc71be34e7b6
parent55b7d4936ef48af436f5f292d685670bd6618ccb (diff)
downloadbundler-960fd6cae5c8318d6ce1ef7c145c2afb2d695c36.tar.gz
Remove ellipses
Signed-off-by: Carl Lerche <carllerche@mac.com>
-rw-r--r--lib/bundler/installer.rb8
-rw-r--r--lib/bundler/source.rb22
2 files changed, 15 insertions, 15 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index ed0611eef4..845dfc5d32 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -25,7 +25,7 @@ module Bundler
# end
if (spec.groups & options[:without]).any?
- Bundler.ui.debug " * Not in requested group... skipping."
+ Bundler.ui.debug " * Not in requested group; skipping."
next
end
spec.source.install(spec)
@@ -71,7 +71,7 @@ module Bundler
def resolve_remotely
index # trigger building the index
- Bundler.ui.info "Resolving dependencies... "
+ Bundler.ui.info "Resolving dependencies"
source_requirements = {}
dependencies.each do |dep|
next unless dep.source
@@ -116,7 +116,7 @@ module Bundler
other_sources.each do |source|
i = source.specs
- Bundler.ui.debug "Source: Processing index... "
+ Bundler.ui.debug "Source: Processing index"
index = i.merge(index).freeze
end
@@ -124,7 +124,7 @@ module Bundler
rg_sources.each do |source|
i = source.specs
- Bundler.ui.debug "Source: Processing index... "
+ Bundler.ui.debug "Source: Processing index"
index = i.merge(index).freeze
end
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb
index 42c26ae3f7..593f0e47bb 100644
--- a/lib/bundler/source.rb
+++ b/lib/bundler/source.rb
@@ -26,9 +26,9 @@ module Bundler
def install(spec)
destination = Gem.dir
- Bundler.ui.debug " * Downloading..."
+ Bundler.ui.debug " * Downloading"
gem_path = Gem::RemoteFetcher.fetcher.download(spec, uri, destination)
- Bundler.ui.debug " * Installing..."
+ Bundler.ui.debug " * Installing"
installer = Gem::Installer.new gem_path,
:install_dir => Gem.dir,
:ignore_dependencies => true
@@ -40,7 +40,7 @@ module Bundler
def fetch_specs
index = Index.new
- Bundler.ui.info "Fetching source index from #{uri}... "
+ Bundler.ui.info "Fetching source index from #{uri}"
(main_specs + prerelease_specs).each do |name, version, platform|
next unless Gem::Platform.match(platform)
spec = RemoteSpecification.new(name, version, platform, @uri)
@@ -83,7 +83,7 @@ module Bundler
end
def install(spec)
- Bundler.ui.debug " * already installed... skipping"
+ Bundler.ui.debug " * already installed; skipping"
end
end
@@ -113,7 +113,7 @@ module Bundler
def install(spec)
destination = Gem.dir
- Bundler.ui.debug " * Installing from pack..."
+ Bundler.ui.debug " * Installing from pack"
installer = Gem::Installer.new "#{@path}/#{spec.full_name}.gem",
:install_dir => Gem.dir,
:ignore_dependencies => true
@@ -172,7 +172,7 @@ module Bundler
end
def install(spec)
- Bundler.ui.debug " * Using path #{path}..."
+ Bundler.ui.debug " * Using path #{path}"
end
alias specs local_specs
@@ -233,12 +233,12 @@ module Bundler
end
def install(spec)
- Bundler.ui.debug " * Using git #{uri}..."
+ Bundler.ui.debug " * Using git #{uri}"
if @installed
- Bundler.ui.debug " * Already checked out revision: #{ref}..."
+ Bundler.ui.debug " * Already checked out revision: #{ref}"
else
- Bundler.ui.debug " * Checking out revision: #{ref}..."
+ Bundler.ui.debug " * Checking out revision: #{ref}"
FileUtils.mkdir_p(path)
Dir.chdir(path) do
unless File.exist?(".git")
@@ -275,10 +275,10 @@ module Bundler
def cache
if cache_path.exist?
- Bundler.ui.info "Updating #{uri}... "
+ Bundler.ui.info "Updating #{uri}"
in_cache { git "fetch --quiet #{uri} master:master" }
else
- Bundler.ui.info "Fetching #{uri}... "
+ Bundler.ui.info "Fetching #{uri}"
FileUtils.mkdir_p(cache_path.dirname)
git "clone #{uri} #{cache_path} --bare --no-hardlinks"
end