CONTRIBUTING.md
December 17, 2012 ยท View on GitHub
We :heart: pull requests. Here's a quick guide:
Contributing
- Fork it
- Run the tests and make sure they pass :thumbsup: (
bundle && rake) - Add a test for your change
- Make the test pass
- Submit a pull request:
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
- Create your feature branch (
Guidelines
- Include tests that fail without your code, but pass with your code
- Follow coding conventions found in the current project
- Update the documentation, examples, and/or anything that is affected by your contribution