Move executables under ./bin

This commit is contained in:
Markus Schirp 2012-11-22 01:50:11 +01:00
parent 86acb3a409
commit 7e4b344d14
2 changed files with 0 additions and 0 deletions

14
bin/mutant Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env ruby
require 'mutant'
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)