summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Diamond <thejendiamond@gmail.com>2013-07-23 11:04:00 -0700
committerJen Diamond <thejendiamond@gmail.com>2013-07-23 11:04:00 -0700
commit935c3d345c41ca88909361cce6448897248bffc8 (patch)
treec6917effd4b2ca6220243655251d76faa8923e43
parentf0169368db7199c9c1d1075d160d46242190cf9d (diff)
downloadbundler-935c3d345c41ca88909361cce6448897248bffc8.tar.gz
updates to Bundler for Development
-rw-r--r--CONTRIBUTE.md36
1 files changed, 4 insertions, 32 deletions
diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md
index 6fe7dbcabd..146d65349b 100644
--- a/CONTRIBUTE.md
+++ b/CONTRIBUTE.md
@@ -10,43 +10,15 @@ The Bundler core team consists of André Arko ([@indirect](http://github.com/ind
# How to Set Up Bundler for Development
-1. Fork Bundler
-
- Go to the Bundler Github [https://github.com/bundler/bundler](https://github.com/bundler/bundler)
-
- Press the fork button.
-
- Fork Bundler so you can create pull requests with your changes
-
- ![](https://raw.github.com/exosamsi/detrending/master/fork.png)
-
-2. Download a copy of your fork of Bundler
-
- `$ git clone https://github.com/user_name/bundler.git`
-
-
-3. Change into the Bundler directory
-
- `$ cd bundler`
-
-4. Configure the remote
-
- `$ git remote add upstream https://github.com/bundler/bundler.git`
-
- This connects your local repo to the upstream repo at Github.
-
-
-5. Install Bundler development dependencies
+Install Bundler development dependencies
- `$ rake spec:deps`
+ `$ rake spec:deps`
- What is rake? [http://rake.rubyforge.org/](http://rake.rubyforge.org/)
-6. Run the Bundler test suite
+Run the Bundler test suite
- `$ rake spec`
+ `$ rake spec`
- This should take about 15 minutes.
# Adding new features