3de69d832d
* Currently broken (sorry) but do have to push to fix some nasty transitive dependency stuff (do not ask). * Fix fix it tomorrow (hopefully I find the time)
15 lines
293 B
Ruby
Executable file
15 lines
293 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require 'mutant'
|
|
require 'mutant/cli'
|
|
|
|
namespace =
|
|
if File.basename($0) == 'zombie'
|
|
$stderr.puts('Detected zombie environment...')
|
|
require File.expand_path('../spec/support/zombie.rb', __FILE__)
|
|
Zombie.setup
|
|
else
|
|
Mutant
|
|
end
|
|
|
|
namespace::CLI.run(ARGV)
|