From da92391076bdaeedce3f3fe0e4d4321e98f91743 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Mon, 28 Jul 2025 10:51:56 -0400 Subject: [PATCH] Add `changelog_uri` to gemspec metadata Adds a link to the GitHub Releases page for this gem consistent with other gems in the Ruby organization. Existing examples include: - [json](https://github.com/ruby/json/blob/master/json.gemspec) - [ostruct](https://github.com/ruby/ostruct/blob/master/ostruct.gemspec) --- matrix.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matrix.gemspec b/matrix.gemspec index 05085b9..12446a0 100644 --- a/matrix.gemspec +++ b/matrix.gemspec @@ -19,6 +19,8 @@ Gem::Specification.new do |spec| spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = ">= 2.5.0" + spec.metadata["changelog_uri"] = "#{spec.homepage}/releases" + spec.files = ["COPYING", "BSDL", "lib/matrix.rb", "lib/matrix/eigenvalue_decomposition.rb", "lib/matrix/lup_decomposition.rb", "lib/matrix/version.rb", "matrix.gemspec"] spec.bindir = "exe" spec.executables = []