From d6b99f58cd56cda452779e70292055f933c3c8f3 Mon Sep 17 00:00:00 2001
From: Mark Young
Date: Tue, 31 Dec 2024 16:35:19 +0000
Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/guard
By providing a 'changelog_uri' in the metadata of the gemspec a
'Changelog' link will be shown on https://rubygems.org/gems/guard
which makes it quick and easy for someone to check on the changes
introduced with a new version.
Details of this functionality can be found on https://guides.rubygems.org/specification-reference/#metadata
---
guard.gemspec | 2 ++
1 file changed, 2 insertions(+)
diff --git a/guard.gemspec b/guard.gemspec
index 657dabd1..db56386e 100644
--- a/guard.gemspec
+++ b/guard.gemspec
@@ -38,4 +38,6 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
s.executables = %w[guard _guard-core]
s.require_path = "lib"
+
+ s.metadata["changelog_uri"] = "https://github.com/guard/guard/releases"
end