summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-05-29 17:26:23 +0000
committerThe Bundler Bot <bot@bundler.io>2017-05-29 17:26:23 +0000
commitb3047f8c3909703123558e4f22c6ada37e019702 (patch)
tree1b683f77fc3eabf30186aa4ffc3c2855d7da27fc
parent595e81ef78b321cde931de601e4148db28d0aaac (diff)
parent065d3098cb9437da652d427780de2777665e3aa7 (diff)
downloadbundler-b3047f8c3909703123558e4f22c6ada37e019702.tar.gz
Auto merge of #5684 - bundler:colby/setup-doc-formatting, r=segiddins
SETUP.md: add markdown code blocks to shell commands
-rw-r--r--doc/development/SETUP.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md
index 10f8dd30f1..2011651252 100644
--- a/doc/development/SETUP.md
+++ b/doc/development/SETUP.md
@@ -4,23 +4,23 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
1. Install `groff-base` and `graphviz` packages using your package manager, e.g for ubuntu
- $ sudo apt-get install graphviz groff-base -y
+ `$ sudo apt-get install graphviz groff-base -y`
and for OS X (with brew installed)
- $ brew install graphviz homebrew/dupes/groff
+ `$ brew install graphviz homebrew/dupes/groff`
2. Install Bundler's development dependencies
- $ bin/rake spec:deps
+ `$ bin/rake spec:deps`
3. Run the test suite, to make sure things are working
- $ bin/rake spec
+ `$ bin/rake spec`
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'
+ `$ 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.