diff --git a/bundler/doc/development/SETUP.md b/bundler/doc/development/SETUP.md index 32b39626c610..25546cdc69e7 100644 --- a/bundler/doc/development/SETUP.md +++ b/bundler/doc/development/SETUP.md @@ -6,31 +6,27 @@ To work on Bundler, you'll probably want to do a couple of things: * Install `graphviz` package using your package manager: - $ sudo apt-get install graphviz -y + sudo apt-get install graphviz -y And for OS X (with brew installed): - $ brew install graphviz + brew install graphviz -* Install development dependencies from the rubygems root directory: +* Install development dependencies and Bundler's test dependencies from the rubygems root directory: - $ rake setup + bin/rake setup spec:parallel_deps * Change into the bundler directory: - $ cd bundler - -* Install Bundler's test dependencies: - - $ bin/rake spec:parallel_deps + cd bundler * Now you can run the test suite in parallel: - $ bin/parallel_rspec + bin/parallel_rspec * 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='ruby /path/to/bundler/repo/spec/support/bundle.rb' + alias dbundle='ruby /path/to/bundler/repo/spec/support/bundle.rb' ## Jointly developing on Bundler and RubyGems