summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-13 22:50:58 -0700
committerAndre Arko <andre@arko.net>2015-04-13 22:50:58 -0700
commit1b7fe379d21b1c92e1490c9d5e74efc87dba9a93 (patch)
tree4b17b1b59290934d5dfd890cda367a35f1cf6f8e
parente41edd133a737ed95581a4e850076c7160289269 (diff)
downloadbundler-1b7fe379d21b1c92e1490c9d5e74efc87dba9a93.tar.gz
gems can be available without being installed
as in vendor/cache
-rw-r--r--lib/bundler/resolver.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/resolver.rb b/lib/bundler/resolver.rb
index 5ec46acc82..511a74139a 100644
--- a/lib/bundler/resolver.rb
+++ b/lib/bundler/resolver.rb
@@ -323,7 +323,8 @@ module Bundler
message << "Source does not contain any versions of '#{requirement}'"
end
else
- message = "Could not find gem '#{requirement}' in any of the gem sources listed in your Gemfile or installed on this machine."
+ message = "Could not find gem '#{requirement}' in any of the gem sources " \
+ "listed in your Gemfile or available on this machine."
end
raise GemNotFound, message
end