Created
August 26, 2010 13:05
-
-
Save erubboli/551347 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ss { | |
if [ -e script/rails ]; then | |
script/rails server $@ | |
else | |
script/server $@ | |
fi | |
} | |
function sc { | |
if [ -e script/rails ]; then | |
script/rails console $@ | |
else | |
script/console $@ | |
fi | |
} | |
function sg { | |
if [ -e script/rails ]; then | |
script/rails generate $@ | |
else | |
script/generate $@ | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment