summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-06-23 15:51:14 -0700
committerAndre Arko <andre@arko.net>2013-06-23 15:51:14 -0700
commit8bc6800e9cf2336464c4b2bb7245f2b054975103 (patch)
tree42965dc6ce9de5ded9a7aadf0fbe2ae6a2e16a27 /man
parent2d656589d7312838cfa1cdb837e8d4ae4a0584ba (diff)
parent4a8ff0c5b3f9192f178a9ba32db712ef9c11b091 (diff)
downloadbundler-8bc6800e9cf2336464c4b2bb7245f2b054975103.tar.gz
Merge branch '1-3-stable'
Diffstat (limited to 'man')
-rw-r--r--man/bundle-exec.ronn30
1 files changed, 24 insertions, 6 deletions
diff --git a/man/bundle-exec.ronn b/man/bundle-exec.ronn
index d28ea51ce0..43f61c60b5 100644
--- a/man/bundle-exec.ronn
+++ b/man/bundle-exec.ronn
@@ -58,17 +58,35 @@ It also modifies Rubygems:
### Shelling out
-When shelling out (using the `system` or backticks methods,
-for example), Bundler's environment changes will propagate to
-the subshell environment. If you desire to shell out without
-Bundler's environment changes, simply employ the `with_clean_env`
-method. It will restore all environment variables to what they
-were before Bundler was activated. For example:
+Any Ruby code that opens a subshell (like `system`, backticks, or `%x{}`) will
+automatically use the current Bundler environment. If you need to shell out to
+a Ruby command that is not part of your current bundle, use the
+`with_clean_env` method with a block. Any subshells created inside the block
+will be given the environment present before Bundler was activated. For
+example, Homebrew commands run Ruby, but don't work inside a bundle:
Bundler.with_clean_env do
`brew install wget`
end
+Using `with_clean_env` is also necessary if you are shelling out to a different
+bundle. Any Bundler commands run in a subshell will inherit the current
+Gemfile, so commands that need to run in the context of a different bundle also
+need to use `with_clean_env`.
+
+ Bundler.with_clean_env do
+ Dir.chdir "/other/bundler/project" do
+ `bundle exec ./script`
+ end
+ end
+
+Bundler provides convenience helpers that wrap `system` and `exec`, and they
+can be used like this:
+
+ Bundler.clean_system('brew install wget')
+ Bundler.clean_exec('brew install wget')
+
+
## RUBYGEMS PLUGINS
At present, the Rubygems plugin system requires all files