diff options
author | Kyle Unruh <kyle@gotime.com> | 2018-03-15 19:53:05 -0600 |
---|---|---|
committer | Kyle Unruh <kyle@gotime.com> | 2018-03-15 19:53:05 -0600 |
commit | 00752dfd812a44d92ae9a86c105567be04b8075e (patch) | |
tree | 2ab2c1e0c24f0f4fa3b119c709392c642d194448 | |
parent | 21c262a36da1d1b4bfb71acf4de31edc94d796e8 (diff) | |
download | bundler-00752dfd812a44d92ae9a86c105567be04b8075e.tar.gz |
Update brew install for groff
-rw-r--r-- | doc/development/SETUP.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md index a05f9861a1..80abe4cc6b 100644 --- a/doc/development/SETUP.md +++ b/doc/development/SETUP.md @@ -10,7 +10,7 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we And for OS X (with brew installed): - $ brew install graphviz homebrew/dupes/groff + $ brew install graphviz groff 3. You may also have to install the `bsdmainutils` package on linux if your distribution does not include the `col` command. @@ -26,7 +26,7 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we 6. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias ([follow these instructions](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile): - $ alias dbundle='/path/to/bundler/repo/bin/bundle + $ alias dbundle='/path/to/bundler/repo/bin/bundle' ## Debugging with `pry` |