To avoid using bundle exec or creating rvm gemsets
- Add to the end your .bash_profile 
export PATH="./vendor/bundle/bin:$PATH" - Also add 
alias bi="bundle install --path vendor/bundle --binstubs=vendor/bundle/bin" - Then to bundle install next time just use 
bi 
Now no more bundle exec before any rake, cap, spec or anything else :)