I imagine that I should write a git commit hook (post-merge?) that would look at the list of changed files and run bundle install if necessary after I fetch and merge from my git repo.
But after some googling, I figure that either this should exist (couldn't find it!) or there's a good reason not to do this.
You can create a post-merge hook that will fire everytime you pull changes:
~/.git/post-merge
... and set it up to re-install bundle if needed:
bundle check || bundle install
Using rerun
you can automatically run bundle install
on Gemfile changes:
rerun --no-notify --pattern "Gemfile*" "bundle check || bundle install; true"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With