Fix some zombie issues and prevent devtools mutant rake task

This commit is contained in:
Markus Schirp 2013-04-21 02:55:09 +02:00
parent 446aec4839
commit 728f8700e1
3 changed files with 11 additions and 3 deletions

View file

@ -1,6 +1,13 @@
require 'devtools'
Devtools.init_rake_tasks
Rake::TaskManager.class_eval do
def remove_task(task_name)
@tasks.delete(task_name.to_s)
end
end
namespace :metrics do
desc 'Run mutant'
task :mutant => :coverage do
@ -12,5 +19,6 @@ namespace :metrics do
$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
Kernel.exit(0) # FIXME: Prevent devtools mutant task
end
end

View file

@ -1,3 +1,3 @@
---
threshold: 16
total_score: 602
total_score: 597

View file

@ -113,7 +113,7 @@ module Mutant
# @api private
#
def reporter
Mutant::Reporter::CLI.new($stdout)
Reporter::CLI.new($stdout)
end
memoize :reporter
@ -131,7 +131,7 @@ module Mutant
raise Error, 'No matchers given'
end
Mutant::Matcher::Chain.build(@matchers)
Matcher::Chain.build(@matchers)
end
memoize :matcher