rails3.plugin.zsh 833 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
alias rg='_rails_command generate'
16
alias rgm='_rails_command generate migration'
17
alias rp='_rails_command plugin'
szetobo's avatar
szetobo committed
18
alias ru='_rails_command runner'
19
20
alias rs='_rails_command server'
alias rsd='_rails_command server --debugger'
21
alias devlog='tail -f log/development.log'
Lucas Uyezu's avatar
Lucas Uyezu committed
22
23
alias testlog='tail -f log/test.log'
alias prodlog='tail -f log/production.log'
Kir Shatrov's avatar
Kir Shatrov committed
24
25
alias rdm='rake db:migrate'
alias rdr='rake db:rollback'
26
27
28
alias -g RET='RAILS_ENV=test'
alias -g REP='RAILS_ENV=production'
alias -g RED='RAILS_ENV=development'