summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJen Diamond <thejendiamond@gmail.com>2013-07-22 17:21:00 -0700
committerJen Diamond <thejendiamond@gmail.com>2013-07-22 17:21:00 -0700
commit3418ddbd457670190fd6865c7adfc4560854daf7 (patch)
tree66c11bf45e0a8fe9ce8231a0707bd8df39c317b7
parent6423da7150b880a68d8378c200de11f8c0a4b070 (diff)
downloadbundler-3418ddbd457670190fd6865c7adfc4560854daf7.tar.gz
added documentation on how to set up Bundler for Development
-rw-r--r--CONTRIBUTE.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md
index 803e5c131e..1510210c77 100644
--- a/CONTRIBUTE.md
+++ b/CONTRIBUTE.md
@@ -8,6 +8,34 @@ You can start learning about Bundler by reading [the documentation](http://gembu
The Bundler core team consists of André Arko ([@indirect](http://github.com/indirect)), Terence Lee ([@hone](http://github.com/hone)), and Jessica Lynn Suttles ([@jlsuttles](http://github.com/jlsuttles)), with support and advice from original Bundler author Yehuda Katz ([@wycats](http://github.com/wycats)).
+# How to set up bundler for development
+1. Fork Bundler
+ Go to the Bundler Github https://github.com/bundler/bundler
+ Press the fork button.
+
+2. Clone Bundler to your Repo
+ $ git clone https://github.com/jendiamond/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. Get Rake dependencies
+ $ rake spec:deps
+
+ What is rake? http://rake.rubyforge.org/
+
+6. Run tests
+ $ rake spec
+
+ Spec == Test
+
+ This should take about 15 minutes.
+
# Adding new features
When adding a new feature to Bundler, please follow these steps: