This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/rails/init.zsh

31 lines
719 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
# Defines Ruby on Rails aliases.
#
# Authors:
# Robby Russell <robby@planetargon.com>
# Jake Bell <jake.b.bell@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-30 23:16:15 -04:00
# Aliases (compatible with Rails 2)
alias rc='_rails-command console'
alias rd='_rails-command destroy'
alias rdb='_rails-command dbconsole'
alias rdbm='rake db:migrate db:test:clone'
alias rg='_rails-command generate'
alias rp='_rails-command plugin'
2011-12-28 11:21:18 -05:00
alias rr='_rails-command runner'
2011-08-30 23:16:15 -04:00
alias rs='_rails-command server'
alias rsd='_rails-command server --debugger'
alias devlog='tail -f log/development.log'
2011-08-30 23:16:15 -04:00
# Functions
function _rails-command {
2011-08-30 23:16:15 -04:00
if [[ -e "script/server" ]]; then
ruby script/"$@"
else
ruby script/rails "$@"
fi
}
2011-08-30 23:16:15 -04:00