Skip to content

Instantly share code, notes, and snippets.

@indirect
Created August 19, 2010 22:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save indirect/539140 to your computer and use it in GitHub Desktop.
Save indirect/539140 to your computer and use it in GitHub Desktop.
rails console alias for both 2 and 3
# Rails 2 and Rails 3 console
function rc {
if [ -e "./script/console" ]; then
./script/console $@
else
rails console $@
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment