aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/dsl.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-04-02 23:40:10 -0700
committerAndre Arko <andre@arko.net>2010-04-02 23:43:33 -0700
commit1951e724238c15c711a5e84d07270118dd092230 (patch)
tree4ed14005502e762a2cb9638de9f941f39f0a182c /lib/bundler/dsl.rb
parent71a518cb0bbc92d58a8bd1cecc40f78488f8a25a (diff)
downloadbundler-1951e724238c15c711a5e84d07270118dd092230.tar.gz
Resolver "gem not found" message now indicates local or remote
Diffstat (limited to 'lib/bundler/dsl.rb')
-rw-r--r--lib/bundler/dsl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/dsl.rb b/lib/bundler/dsl.rb
index 4a70d881..0dfb268d 100644
--- a/lib/bundler/dsl.rb
+++ b/lib/bundler/dsl.rb
@@ -66,7 +66,7 @@ module Bundler
def self.deprecate(name)
define_method(name) do |*|
- raise DeprecatedMethod, "#{name} is removed. See the README for more information"
+ raise DeprecatedMethod, "#{name} has been removed from the Gemfile DSL. See the README for more information on upgrading from Bundler 0.8."
end
end