Created
July 6, 2010 12:58
-
-
Save lwe/465353 to your computer and use it in GitHub Desktop.
Simple rails wrapper, which transparently handles Rails 2.x vs. Rails 3 projects.
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
## rails wrapper | |
function rails() { | |
if [ -x `pwd`/script/rails ]; then | |
echo "[run] ./script/rails" | |
`pwd`/script/rails $* | |
elif [ -f `pwd`/Gemfile ]; then | |
echo "[run] bundle exec rails" | |
bundle exec rails $* | |
else | |
_rails_bin=$(\which rails | tail -1) | |
echo "[run] $_rails_bin" | |
$_rails_bin $* | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment