Last Updated: January 28, 2019
·
824
· mindeavor

A faster way to rake (with bundler)

Tired of typing bundle exec rake db:some_task? Try putting this in your ~/.bash_profile :

alias brake="bundle exec rake"

Now you can bundle exec with ease:

$ brake db:migrate

2 Responses
Add your response

bundle exec --binstubs
export PATH=./bin:$PATH

over 1 year ago ·