mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-29 05:18:49 +01:00
7 lines
219 B
Ruby
7 lines
219 B
Ruby
require 'rake'
|
|
require 'spec/rake/verify_rcov'
|
|
|
|
RCov::VerifyTask.new(:verify_rcov => :spec) do |t|
|
|
t.threshold = 100.0 # Make sure you have rcov 0.7 or higher!
|
|
t.index_html = '../doc/output/coverage/index.html'
|
|
end
|