README.md in git-up-0.4.4 vs README.md in git-up-0.5.0

- old
+ new

@@ -13,10 +13,18 @@ `git-up` might mess up your branches, or set your chest hair on fire, or be racist to your cat, I don't know. It works for me. configuration ------------- -`git-up` now has some configuration. Yay. +`git-up` can check your app for any new bundled gems and suggest a `bundle install` if necessary. -As of `v0.4.1`, `git-up` can check your app for any new bundled gems and suggest a `bundle install` if necessary. +It slows the process down slightly, and is therefore enabled by setting `git-up.bundler.check` to `true` in your git config, either globally or per-project. To set it globally, run this command anywhere: -It slows the process down slightly, and is therefore enabled by setting `GIT_UP_BUNDLER_CHECK='true'` in your `.bashrc`, `.profile`, or whatever. + git config --global git-up.bundler.check true + +To set it within a project, run this command inside that project's directory: + + git config git-up.bundler.check true + +Replace 'true' with 'false' to disable checking. + +If you're even lazier, you can tell `git-up` to run `bundle install` for you if it finds missing gems. Simply set `git-up.bundler.autoinstall` to `true`, in the same manner. As above, it works globally or per-project, but make sure `git-up.bundler.check` is also set to `true` or it won't do anything.