added aliases for rake routes on rails3 plugin

This commit is contained in:
tinogomes 2011-06-17 21:32:54 -03:00
commit f2228fb756

View file

@ -17,3 +17,9 @@ alias rp='_rails_command plugin'
alias rs='_rails_command server' alias rs='_rails_command server'
alias rsd='_rails_command server --debugger' alias rsd='_rails_command server --debugger'
alias devlog='tail -f log/development.log' alias devlog='tail -f log/development.log'
alias rspec='_bundle_command rspec'
alias cuke='_bundle_command cucumber'
alias routes='rake routes'
alias groutes='routes | grep'