Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# jwt-eddsa

[![Gem Version](https://badge.fury.io/rb/jwt-eddsa.svg)](https://badge.fury.io/rb/jwt-eddsa)
[![Build status](https://github.com/anakinj/jwt-eddsa/actions/workflows/test.yml/badge.svg)](https://github.com/anakinj/jwt-eddsa/actions/workflows/test.yml)
[![Build status](https://github.com/jwt/ruby-jwt-eddsa/actions/workflows/test.yml/badge.svg)](https://github.com/jwt/ruby-jwt-eddsa/actions/workflows/test.yml)

A library extending the ruby-jwt gem with EdDSA algorithms. Based on [RFC 8037](https://datatracker.ietf.org/doc/html/rfc8037).

Expand Down Expand Up @@ -36,7 +36,7 @@ bundle exec rake

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/anakinj/jwt-eddsa. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/anakinj/jwt-eddsa/blob/main/CODE_OF_CONDUCT.md).
Bug reports and pull requests are welcome on GitHub at https://github.com/jwt/ruby-jwt-eddsa. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jwt/ruby-jwt-eddsa/blob/main/CODE_OF_CONDUCT.md).

In this repository, pull request titles must follow the [Conventional Commit](https://www.conventionalcommits.org/) specification to ensure clear and consistent communication of changes.

Expand All @@ -46,4 +46,4 @@ The gem is available as open source under the terms of the [MIT License](https:/

## Code of Conduct

Everyone interacting in the jwt-eddsa project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/anakinj/jwt-eddsa/blob/main/CODE_OF_CONDUCT.md).
Everyone interacting in the jwt-eddsa project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jwt/ruby-jwt-eddsa/blob/main/CODE_OF_CONDUCT.md).
6 changes: 3 additions & 3 deletions jwt-eddsa.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Gem::Specification.new do |spec|
spec.summary = "EdDSA algorithm extension for ruby-jwt"
spec.description = "Extends the ruby-jwt gem with EdDSA signing, verification and JWK importing/exporting"

spec.homepage = "https://github.com/anakinj/jwt-eddsa"
spec.homepage = "https://github.com/jwt/ruby-jwt-eddsa"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.5"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/anakinj/jwt-eddsa"
spec.metadata["changelog_uri"] = "https://github.com/anakinj/jwt-eddsa/blob/v#{JWT::EdDSA::VERSION}/CHANGELOG.md"
spec.metadata["source_code_uri"] = "https://github.com/jwt/ruby-jwt-eddsa"
spec.metadata["changelog_uri"] = "https://github.com/jwt/ruby-jwt-eddsa/blob/v#{JWT::EdDSA::VERSION}/CHANGELOG.md"

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand Down