From 9af308a5f8a7145f5a2a6457beaef508d56ea4de Mon Sep 17 00:00:00 2001 From: Bob Aman Date: Fri, 22 Oct 2010 23:11:59 +0000 Subject: [PATCH] Updated install error message for rcov. git-svn-id: https://google-api-ruby-client.googlecode.com/svn/trunk@103 c1d61fac-ed7f-fcc1-18f7-ff78120a04ef --- tasks/spec.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/spec.rake b/tasks/spec.rake index 42e7aacd5..38578d4b0 100644 --- a/tasks/spec.rake +++ b/tasks/spec.rake @@ -6,10 +6,10 @@ namespace :spec do t.spec_opts = ['--require', 'rubygems', '--color', '--format', 'specdoc'] if RCOV_ENABLED if `which rcov`.strip == "" - STDERR.puts "Please install rcov:" STDERR.puts( - "sudo gem install relevance-rcov --source http://gems.github.com/" + "Please install rcov and ensure that its binary is in the PATH:" ) + STDERR.puts("sudo gem install rcov") exit(1) end t.rcov = true