Displaying 1 result from an estimated 1 matches for "rcov_exclud".
Did you mean:
rcov_exclude
2006 Mar 16
1
Re: rcov 0.2.0 - code coverage tool for Ruby
...t;#{RBINDIR}/rcov"
if File.exists?(RBIN)
# output goes to subdirectories of this one
RCOV_OUT = "coverage"
# "rake clobber" to remove output directory (along with other generated stuff)
CLOBBER.include(RCOV_OUT)
# don''t report coverage on these files
RCOV_EXCLUDE = %w(boot.rb environment.rb vendor/rails
test/functional test/unit).join('','')
# RCOV command, run as though from the commandline. Amend as
required or perhaps move to config/environment.rb?
RCOV = "#{RBINDIR}/ruby #{RBIN} --exclude #{RCOV_EXCLUDE} --output
#{RCOV_OUT}&...