Fix misleading advice to add 'memcache' to Gemfile

[#5539 state:committed]

Commit 57144388f removed the hard-coded dependency on the memcache-client
gem, and added this warning advising people to install it if needed. The
problem is, however, that if people follow the advice literally and install
the 'memcache' gem, they will wind up with a completely different thing,
which is not API compatible with the memcache-client gem and which Rails
can't work with.

So, be explicit and tell users to install the 'memcache-client' gem.

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
This commit is contained in:
Wincent Colaiuta 2010-09-03 01:23:15 +02:00 committed by Santiago Pastorino
parent d80afed620
commit f659a1576f

@ -1,7 +1,7 @@
begin
require 'memcache'
rescue LoadError => e
$stderr.puts "You don't have memcache installed in your application. Please add it to your Gemfile and run bundle install"
$stderr.puts "You don't have memcache-client installed in your application. Please add it to your Gemfile and run bundle install"
raise e
end
require 'digest/md5'