Using Shell aliases to speed up your Rails development (on OSX)

Tired of writing

script/server

?

How about saving yourself from carpal tunnel with handy aliases like these? ;

 
# Rails 
alias r='touch tmp/restart.txt' 
alias ss='script/server' 

Grab the source over at http://gist.github.com/218795 and whack it in your .bash_profile.

(Dont forget to set up git autocompletion first : http://blog.ericgoodwin.com/2008/4/10/auto-completion-with-git )