Contributing to ruby-jwt
Fork the project on GitHub and clone your own fork. Instuctions on forking can be found from the GitHub Docs
git clone [email protected]:you/ruby-jwt.git
cd ruby-jwt
git remote add upstream https://github.com/jwt/ruby-jwt
Make sure you have the latest upstream main branch of the project.
git fetch --all
git checkout main
git rebase upstream/main
git push origin main
git checkout -b fix-a-little-problem
Before you start with your implementation make sure you are able to get a successful test run with the current revision.
The tests are written with rspec and Appraisal is used to ensure compatibility with 3rd party dependencies providing cryptographic features.
Rubocop is used to enforce the Ruby style.
To run the complete set of tests and linter run the following
bundle install
bundle exec appraisal rake test
bundle exec rubocop
Implement tests and your change. Don't be shy adding a little something in the README.
Add a short description of the change in either the Features
or Fixes
section in the CHANGELOG file.
The form of the row (You need to return to the row when you know the pull request id)
- Fix a little problem [#123](https://github.com/jwt/ruby-jwt/pull/123) - [@you](https://github.com/you).
Before pushing make sure the tests pass and RuboCop is happy.
bundle exec appraisal rake test
bundle exec rubocop
git push origin fix-a-little-problem
Make a new pull request on the ruby-jwt project with a description what the change is about.
Update the CHANGELOG with the pull request id from the previous step.
You can ammend the previous commit with the updated changelog change and force push your branch. The PR will get automatically updated.
git add CHANGELOG.md
git commit --amend --no-edit
git push origin fix-a-little-problem -f
A maintainer will review and probably merge you changes when time allows, be patient.
It's recommended that you keep your branch up-to-date by rebasing to the upstream main.
git fetch upstream
git checkout fix-a-little-problem
git rebase upstream/main
git push origin fix-a-little-problem -f
The version is using the Semantic Versioning and the version is located in the version.rb file. Also update the CHANGELOG to reflect the upcoming version release.
rake release
**If you want a release cut with your PR, please include a version bump according to **