Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
discourse-annotator / CONTRIBUTING.md
Size: Mime:

CONTRIBUTING

Submitting a Pull Request

  1. Fork the repository.
  2. Create a topic branch (git checkout -b BRANCH_NAME).
  3. Install bundler.
  4. Check that tests pass with rspec spec.
  5. Write a failing test to capture existing bug or lack of feature.
  6. Run rspec spec to verify that test fails.
  7. Implement your feature or bug fix.
  8. Ensure tests pass.
  9. If it's a new feature or a bug fix, please add an entry to the CHANGELOG file.
  10. Check code style violations using Rubocop.
  11. Add a commit (git commit -am 'AWESOME COMMIT MESSAGE').
  12. Push your changes to the branch (git push origin BRANCH_NAME).
  13. Submit a pull request.
  14. You will get some feedback and may need to push additional commits with more fixes to the same branch; this will update your pull request automatically.