Sha256: fc7ee77369ad218b03663011d55e0c7361168bc7bd8979d34baa34137b4e3152

Contents?: true

Size: 611 Bytes

Versions: 5

Compression:

Stored size: 611 Bytes

Contents

require 'devtools'
Devtools.init_rake_tasks

class Rake::Task
  def overwrite(&block)
    @actions.clear
    enhance(&block)
  end
end

Rake.application.load_imports

Rake::Task['metrics:mutant'].overwrite do
  $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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mutant-0.3.0.beta6 Rakefile
mutant-0.3.0.beta5 Rakefile
mutant-0.3.0.beta4 Rakefile
mutant-0.3.0.beta3 Rakefile
mutant-0.3.0.beta2 Rakefile