Created
July 23, 2013 17:41
-
-
Save jendiamond/6064430 to your computer and use it in GitHub Desktop.
How to Set Up Bundler for Development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to Set Up Bundler for Development | |
## 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 | |
 | |
## Download a copy of your fork of Bundler | |
`$ git clone https://github.com/user_name/bundler.git` | |
## Change into the Bundler directory | |
`$ cd bundler` | |
## Configure the remote | |
`$ git remote add upstream https://github.com/bundler/bundler.git` | |
This connects your local repo to the upstream repo at Github. | |
## Install Bundler development dependencies | |
`$ rake spec:deps` | |
## Run the Bundler test suite | |
`$ rake spec` | |
This should take up to 15 minutes. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment