From d7d829bb510f6ed54c51b26fc46cdfb46d878193 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Mon, 1 Jun 2026 14:00:30 +0200 Subject: [PATCH] Add source_code and bug_tracker URIs in gemspec This makes it easier to find the repository and contribute patches. --- cbor.gemspec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cbor.gemspec b/cbor.gemspec index dd70c20..e779918 100644 --- a/cbor.gemspec +++ b/cbor.gemspec @@ -10,6 +10,11 @@ Gem::Specification.new do |s| s.email = "cabo@tzi.org" s.license = "Apache-2.0" s.homepage = "http://cbor.io/" + s.metadata = { + "bug_tracker_uri" => "https://github.com/cabo/cbor-ruby/issues", + "source_code_uri" => "https://github.com/cabo/cbor-ruby/", + } + # s.has_rdoc = false s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec}/*`.split("\n")