rails3.plugin.zsh 890 Bytes
Newer Older
1
2
3
4
5
6
# Rails 3 aliases, backwards-compatible with Rails 2.

function _rails_command () {
  if [ -e "script/server" ]; then
    ruby script/$@
  else
7
8
9
10
11
    if [ -e "bin/rails" ]; then
      bin/rails $@
    else
      rails $@
    fi
12
13
14
15
16
17
  fi
}

alias rc='_rails_command console'
alias rd='_rails_command destroy'
alias rdb='_rails_command dbconsole'
18
alias rdbm='rake db:migrate db:test:clone'
19
alias rg='_rails_command generate'
20
alias rgm='_rails_command generate migration'
21
alias rp='_rails_command plugin'
szetobo's avatar
szetobo committed
22
alias ru='_rails_command runner'
23
24
alias rs='_rails_command server'
alias rsd='_rails_command server --debugger'
25
alias devlog='tail -f log/development.log'
Lucas Uyezu's avatar
Lucas Uyezu committed
26
27
alias testlog='tail -f log/test.log'
alias prodlog='tail -f log/production.log'
Kir Shatrov's avatar
Kir Shatrov committed
28
29
alias rdm='rake db:migrate'
alias rdr='rake db:rollback'
30
31
32
alias -g RET='RAILS_ENV=test'
alias -g REP='RAILS_ENV=production'
alias -g RED='RAILS_ENV=development'