Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

23 lines (21 loc) · 1.13 KB

Submitting a Pull Request

  1. Read our Code of Conduct.
  2. Check out Hacking on Octokit in the README for bootstrapping the project for local development.
  3. Fork the repository.
  4. Create a topic branch.
  5. Add specs for your unimplemented feature or bug fix.
  6. Run script/test. If your specs pass, return to step 3.
  7. Implement your feature or bug fix.
  8. Run script/test. If your specs fail, return to step 5.
  9. Run open coverage/index.html. If your changes are not completely covered by your tests, return to step 4.
  10. Add documentation for your feature or bug fix.
  11. Run bundle exec rake doc:yard. If your changes are not 100% documented, go back to step 8.
  12. Add, commit, and push your changes. For documentation-only fixes, please add "[ci skip]" to your commit message to avoid needless CI builds.
  13. Submit a pull request.