free_mutant/Rakefile

24 lines
611 B
Text
Raw Normal View History

2012-12-06 21:35:17 +01:00
require 'devtools'
2013-02-24 19:54:41 +01:00
Devtools.init_rake_tasks
2013-05-22 02:36:05 +02:00
class Rake::Task
def overwrite(&block)
@actions.clear
enhance(&block)
end
end
2013-05-22 02:36:05 +02:00
Rake.application.load_imports
2013-05-22 02:36:05 +02:00
Rake::Task['metrics:mutant'].overwrite do
2013-06-15 17:19:55 +02:00
$stderr.puts "Mutant self mutation (Zombie) is deactivated"
# project = Devtools.project
# require File.expand_path('../spec/support/zombie.rb', __FILE__)
# Zombie.setup
# status = Zombie::CLI.run(%W(::Mutant --rspec-dm2))
# if status.nonzero?
# $stderr.puts 'Zombie task is not successful'
# $stderr.puts 'Not fatal at this point of development, will be fixed before release of 0.3.0'
# end
end