Added alias 'be' to the rvm plugin

While using RVM and Rails 3.1, I found out that rake won't work from
your root directory of your app because Rails uses bundle. I found a
blogpost that contained a workaround for it
(http://house9.blogspot.com/2011/06/rails-31-and-ruby-192-p180-rake-aborted.html)
and decided to move it into the oh-my-zsh rvm plugin.
This commit is contained in:
Wim Griffioen 2011-09-12 16:34:11 +02:00
commit 75ad047ab7

View file

@ -1,5 +1,6 @@
alias rubies='rvm list rubies'
alias gemsets='rvm gemset list'
alias be='bundle exec'
local ruby18='ruby-1.8.7-p334'
local ruby19='ruby-1.9.2-p180'