free_mutant/Rakefile

15 lines
277 B
Text
Raw Normal View History

2013-07-29 20:17:04 -04:00
# encoding: utf-8
2012-12-06 15:35:17 -05:00
require 'devtools'
2013-07-29 20:17:04 -04:00
2013-02-24 13:54:41 -05:00
Devtools.init_rake_tasks
2013-07-02 15:15:44 -04:00
2013-07-02 16:26:41 -04:00
Rake.application.load_imports
2013-07-02 15:15:44 -04:00
task('metrics:mutant').clear
namespace :metrics do
2013-07-02 16:23:39 -04:00
task :mutant => :coverage do
2013-07-02 15:15:44 -04:00
$stderr.puts 'Mutant self mutation is disable till mutant is fast enough for travis'
end
end