summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsutosh Palai <asupalai@gmail.com>2016-03-05 04:04:16 -0500
committerAsutosh Palai <asupalai@gmail.com>2016-03-05 04:04:16 -0500
commitd4f9b8714c45f1fc8aca826abea7fe0979f4e831 (patch)
tree392cfb093f6e09497613e8261724a5897347f3a1
parent5e2e2ff089af4875c54b27cfb5d4286471dff125 (diff)
downloadbundler-d4f9b8714c45f1fc8aca826abea7fe0979f4e831.tar.gz
Added the inst to install packages for dev setup
-rw-r--r--DEVELOPMENT.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 0061fe6d80..0701c72a05 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -19,15 +19,19 @@ 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
+
+ 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'