summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephanie Morillo <rubymorillo@users.noreply.github.com>2017-07-19 12:59:28 -0400
committerGitHub <noreply@github.com>2017-07-19 12:59:28 -0400
commit38ced0f2d3c81323785be2907e22c36f75067b9f (patch)
tree77db1a291cf6f9278c8319f816003b9132768f43
parent04fd47b1221edabbb46caf34798e5340bc46e1ec (diff)
downloadbundler-38ced0f2d3c81323785be2907e22c36f75067b9f.tar.gz
Updated Development setup page
Hey @indirect @segiddins, I've implemented the suggested updates that @arbonap provided. Specifically, adding a new step 1, and adding instructions for creating aliases in bash.
-rw-r--r--doc/development/SETUP.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md
index 2f971de92b..549c2e25c4 100644
--- a/doc/development/SETUP.md
+++ b/doc/development/SETUP.md
@@ -1,24 +1,26 @@
# Development setup
-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.
+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 `groff-base` and `graphviz` packages using your package manager, e.g for ubuntu
+1. [Fork the Bundler repo](https://github.com/bundler/bundler), and clone the fork onto your machine. ([Follow this tutorial](https://help.github.com/articles/fork-a-repo/) for instructions on forking a repo.)
+
+2. 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)
+ and for OS X (with brew installed):
`$ brew install graphviz homebrew/dupes/groff`
-2. Install Bundler's development dependencies
+3. Install Bundler's development dependencies:
`$ bin/rake spec:deps`
-3. Run the test suite, to make sure things are working
+4. Run the test suite, to make sure things are working:
`$ bin/rake spec`
-4. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias:
+5. 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'`