rails3.plugin.zsh 547 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
# Rails 3 aliases, backwards-compatible with Rails 2.

function _rails_command () {
  if [ -e "script/server" ]; then
    ruby script/$@
  else
    ruby script/rails $@
  fi
}

alias rc='_rails_command console'
alias rd='_rails_command destroy'
alias rdb='_rails_command dbconsole'
14
alias rdbm='rake db:migrate db:test:clone'
15
16
alias rg='_rails_command generate'
alias rp='_rails_command plugin'
Godwin Ko's avatar
Godwin Ko committed
17
alias rr='_rails_command runner'
18
19
alias rs='_rails_command server'
alias rsd='_rails_command server --debugger'
20
alias devlog='tail -f log/development.log'