summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-03-16 02:13:34 +0000
committerThe Bundler Bot <bot@bundler.io>2018-03-16 02:13:34 +0000
commit0835ed63ad9c00b818df8034e2facabb18526ddb (patch)
tree2ab2c1e0c24f0f4fa3b119c709392c642d194448
parent21c262a36da1d1b4bfb71acf4de31edc94d796e8 (diff)
parent00752dfd812a44d92ae9a86c105567be04b8075e (diff)
downloadbundler-0835ed63ad9c00b818df8034e2facabb18526ddb.tar.gz
Auto merge of #6348 - kunruh9:master, r=hsbt
Update brew install for groff [dupes](https://github.com/Homebrew/homebrew-dupes) tap is deprecated, `groff` is now in [hombrew-core](https://github.com/Homebrew/homebrew-core/blob/master/Formula/groff.rb). Also fixed a missing single quote while I was at it :)
-rw-r--r--doc/development/SETUP.md4
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`