We ❤️ pull requests. Here's a quick guide:
- Fork it
- Run the tests and make sure they pass 👍 (
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 (
- 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