summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-06-21 17:36:21 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-06-21 17:36:21 -0500
commita485d86072dd1301fb1876e097aaca4f9f933a37 (patch)
tree56cf33b0bcdee6f6f4bcf855516dfd9cc590af35 /doc
parent3032f4aa447ffa58bfc2fa706472591deb696a66 (diff)
downloadbundler-a485d86072dd1301fb1876e097aaca4f9f933a37.tar.gz
Completely remove the postit trampoline
Diffstat (limited to 'doc')
-rw-r--r--doc/development/SETUP.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md
index 2011651252..d4ec555fef 100644
--- a/doc/development/SETUP.md
+++ b/doc/development/SETUP.md
@@ -20,9 +20,7 @@ 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='BUNDLE_TRAMPOLINE_DISABLE=1 ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'`
-
- The `BUNDLE_TRAMPOLINE_DISABLE` 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.
+ `$ alias dbundle='ruby -I /path/to/bundler/lib /path/to/bundler/exe/bundle'`
## Debugging with `pry`