2011-04-29 09:59:59 +00:00
|
|
|
# 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'
|
2010-12-20 15:19:59 +00:00
|
|
|
alias rdbm='rake db:migrate db:test:clone'
|
2011-04-29 09:59:59 +00:00
|
|
|
alias rg='_rails_command generate'
|
2012-06-01 23:11:53 +00:00
|
|
|
alias rgm='_rails_command generate migration'
|
2011-04-29 09:59:59 +00:00
|
|
|
alias rp='_rails_command plugin'
|
2012-01-27 00:50:28 +00:00
|
|
|
alias ru='_rails_command runner'
|
2011-04-29 09:59:59 +00:00
|
|
|
alias rs='_rails_command server'
|
|
|
|
alias rsd='_rails_command server --debugger'
|
2010-12-20 15:19:59 +00:00
|
|
|
alias devlog='tail -f log/development.log'
|
2011-11-09 10:46:38 +00:00
|
|
|
alias rdm='rake db:migrate'
|
|
|
|
alias rdr='rake db:rollback'
|
2013-04-16 07:22:28 +00:00
|
|
|
alias -g RET='RAILS_ENV=test'
|
|
|
|
alias -g REP='RAILS_ENV=production'
|
|
|
|
alias -g RED='RAILS_ENV=development'
|