free_mutant/bin/mutant
2014-04-04 14:14:24 +00:00

19 lines
297 B
Ruby
Executable file

#!/usr/bin/env ruby
# encoding: utf-8
trap('INT') do |status|
exit! 128 + status
end
require 'mutant'
namespace =
if ARGV.include?('--zombie')
$stderr.puts('Running mutant zombified!')
Mutant.zombify
Zombie::Mutant
else
Mutant
end
Kernel.exit(namespace::CLI.run(ARGV))