how to automatically run bundle install if the gemfile is updated after a git pull/merge?
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 af开发者_Python百科ter 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"
精彩评论