public
Description: An attempt to standardize my bash init files
Clone URL: git://github.com/JackDanger/jackbash.git
JackDanger (author)
Fri Apr 18 09:24:55 -0700 2008
commit  1a2e6511a17113ea308cc0e90877cee8d1e74e22
tree    19c3eaa732bd9589e0ae51a0c08cd7f67838f1a6
parent  b7f768a23cf6de7f971cc682d535cc5c0163595e
jackbash / rails
100644 16 lines (15 sloc) 0.732 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
alias gemi='sudo gem install --no-rdoc --no-ri'
alias console='ruby script/server'
alias ss='mongrel_rails start'
alias rs='mongrel_rails restart'
alias sts='mongrel_rails stop'
alias ssd='mongrel_rails start -d'
alias sslog='mongrel_rails start -d | tail -f log/development.log'
alias psm='ps aux | grep mongrel'
alias tcap='rake && cap'
alias routes='rake routes | less'
alias clone='rake db:test:clone_structure'
alias migrate='rake db:migrate'
alias remigrate='rake db:migrate VERSION=0 && rake db:migrate'
alias remigrate_prod='rake db:migrate VERSION=0 RAILS_ENV=production && rake db:migrate RAILS_ENV=production'
alias remigrate_dev='rake db:migrate VERSION=0 RAILS_ENV=development && rake db:migrate RAILS_ENV=development'