Skip to content
Sam Joseph edited this page Aug 22, 2016 · 1 revision

I have these aliases in my .bashrc file

alias bonsai="tree -I 'tmp|node_modules|bower_components'"
alias be="bundle exec"
alias ber="bundle exec rspec -fp"
alias berd="bundle exec rspec -fd"
alias bec="bundle exec cucumber --format progress"
alias bej="USE_JASMINE_RAKE=true bundle exec rake jasmine:ci"
alias bea="if ber ; then if bec ; then bej ; fi ; fi"
alias gst="git status"

credit to @ptolemybarnes for the bonsai alias