Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 954 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (19 loc) · 954 Bytes

Submitting a Pull Request

  1. Check out Hacking on Octokit in the README guide for bootstrapping the project for local development.
  2. Fork the repository.
  3. Create a topic branch.
  4. Add specs for your unimplemented feature or bug fix.
  5. Run bundle exec rspec-queue spec. If your specs pass, return to step 3.
  6. Implement your feature or bug fix.
  7. Run bundle exec rspec-queue spec. If your specs fail, return to step 5.
  8. Run open coverage/index.html. If your changes are not completely covered by your tests, return to step 3.
  9. Add documentation for your feature or bug fix.
  10. Run bundle exec rake doc:yard. If your changes are not 100% documented, go back to step 8.
  11. Add, commit, and push your changes.
  12. Submit a pull request.