Remove functions wrapping Zeus

Project should be moving over to spring, as this is the 'blessed'
approach and is part of suspenders. Leaving these functions around adds
yet another layer of indirection to consider when trying to run these
commands:

* function wrapper
* binstub
* rbenv shim
* actual binary
This commit is contained in:
Derek Prior 2014-04-18 17:06:22 -04:00
parent 8c77a89bc3
commit 00dbd15af6
2 changed files with 0 additions and 14 deletions

View file

@ -1,7 +0,0 @@
rake() {
if [ -S .zeus.sock ]; then
zeus rake "$@"
else
command rake "$@"
fi
}

View file

@ -1,7 +0,0 @@
rspec() {
if [ -S .zeus.sock ]; then
zeus rspec "$@"
else
command rspec "$@"
fi
}