how to automatically run bundle install if the gemfile is updated after a git pull/merge?

StackOverflow https://stackoverflow.com/questions/4036255

  •  26-09-2019
  •  | 
  •  

Question

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.

Was it helpful?

Solution

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

OTHER TIPS

Using rerun you can automatically run bundle install on Gemfile changes:

rerun --no-notify --pattern "Gemfile*" "bundle check || bundle install; true"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top