summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-03-07 17:59:31 +0900
committerHomu <homu@barosl.com>2016-03-07 17:59:31 +0900
commit6858ba09eda42eacdf228250597850fb5137a317 (patch)
treef2f65e739d95b52f1cec58b8d4d77c343aff2c34
parent4db97066bec04badf58544a18e615ba7d3f54f3b (diff)
parent2f44e563e2232ba7bec0276408be0a330118133b (diff)
downloadbundler-6858ba09eda42eacdf228250597850fb5137a317.tar.gz
Auto merge of #4339 - asutoshpalai:dev-fix, r=segiddins
instruction to install certain packages for dev setup Without installing graphviz groff-base packages many tests were failing.
-rw-r--r--DEVELOPMENT.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 0061fe6d80..8845aa5a89 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -19,15 +19,23 @@ bugs](https://github.com/bundler/bundler/issues?labels=small&state=open) and [sm
Bundler doesn't use a Gemfile to list development dependencies, because when we tried it we couldn't tell if we were awake or it was just another level of dreams. To work on Bundler, you'll probably want to do a couple of things.
- 1. Install Bundler's development dependencies
+ 1. Install `groff-base` and `graphviz` packages using your package manager, e.g for ubuntu
+
+ $ sudo apt-get install graphviz groff-base -y
+
+ and for OS X (with brew installed)
+
+ $ brew install graphviz groff
+
+ 2. Install Bundler's development dependencies
$ rake spec:deps
- 2. Run the test suite, to make sure things are working
+ 3. Run the test suite, to make sure things are working
$ rake spec
- 3. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias:
+ 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'