Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. # In your ~/.bashrc:
  2. do_rake () {
  3. if [ -e Gemfile ]; then
  4. bundle exec rake $@
  5. else
  6. rake $@
  7. fi
  8. }
  9. alias rake='do_rake'
Add Comment
Please, Sign In to add comment