Updated install error message for rcov.
git-svn-id: https://google-api-ruby-client.googlecode.com/svn/trunk@103 c1d61fac-ed7f-fcc1-18f7-ff78120a04ef
This commit is contained in:
parent
38f5bc5baf
commit
9af308a5f8
|
@ -6,10 +6,10 @@ namespace :spec do
|
||||||
t.spec_opts = ['--require', 'rubygems', '--color', '--format', 'specdoc']
|
t.spec_opts = ['--require', 'rubygems', '--color', '--format', 'specdoc']
|
||||||
if RCOV_ENABLED
|
if RCOV_ENABLED
|
||||||
if `which rcov`.strip == ""
|
if `which rcov`.strip == ""
|
||||||
STDERR.puts "Please install rcov:"
|
|
||||||
STDERR.puts(
|
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)
|
exit(1)
|
||||||
end
|
end
|
||||||
t.rcov = true
|
t.rcov = true
|
||||||
|
|
Loading…
Reference in New Issue