aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-06-25 23:30:46 +0900
committerHomu <homu@barosl.com>2016-06-25 23:30:46 +0900
commitb44d763965d3551a734a57fd828d13f9908d0bad (patch)
tree8ac2e961500ac7935235f329e3ff5fa8ad8f3552
parentfaf82ccc97ab2441bd4fe849d12151fb347a81cf (diff)
parentc90a6c162a10ce9fa3055da0af17be224af61008 (diff)
downloadbundler-b44d763965d3551a734a57fd828d13f9908d0bad.tar.gz
Auto merge of #4718 - bundler:aa-dbundle-no-trampoline, r=segiddins
disable trampoline in dbundle /cc @segiddins
-rw-r--r--DEVELOPMENT.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 86769042..bc0a2666 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -36,9 +36,9 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
4. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias:
- $ alias dbundle='ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'
+ $ alias dbundle='BUNDLE_DISABLE_POSTIT=1 ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'
- With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
+ The `BUNDLE_DISABLE_POSTIT` environment variable ensures that the version of Bundler in `/path/to/bundler/lib` will be used. Without that environment setting, Bundler will automatically download, install, and run the version of Bundler listed in `Gemfile.lock`. With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
# Submitting Pull Requests