How to get rid of bundle exec

I you feel bored by entering bundle exec (a command that executes a command in the context of the current bundle) if you want to execute a rake task, the folloowing code could help to get rid of it:
bundle install --binstubs; export PATH="./bin:$PATH"

No comments yet.