2013-07-29 17:17:04 -07:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2013-12-29 23:36:55 +01:00
|
|
|
require 'devtools'
|
2013-07-29 17:17:04 -07:00
|
|
|
|
2013-12-29 23:36:55 +01:00
|
|
|
Devtools.init_rake_tasks
|
2014-04-22 22:11:02 +00:00
|
|
|
|
|
|
|
# Mutant self test is to slow for travis. Fast enough for circle.
|
|
|
|
if ENV['TRAVIS']
|
2014-05-07 18:15:39 +00:00
|
|
|
Rake.application.load_imports
|
|
|
|
|
2014-04-22 22:11:02 +00:00
|
|
|
task('metrics:mutant').clear
|
|
|
|
namespace :metrics do
|
|
|
|
task :mutant => :coverage do
|
|
|
|
$stderr.puts 'Mutant self test via zombie not active on travis CI'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|