Skip to content

Instantly share code, notes, and snippets.

@lwe
Created July 6, 2010 12:58
Show Gist options
  • Save lwe/465353 to your computer and use it in GitHub Desktop.
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.
## 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