From 4ee1bad392d018ffed7f4c3d970d25bb5575a575 Mon Sep 17 00:00:00 2001 From: Mark Young Date: Mon, 13 Jan 2025 14:22:20 +0000 Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/redis-actionpack By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/redis-actionpack 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 --- redis-actionpack.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/redis-actionpack.gemspec b/redis-actionpack.gemspec index 82e44cd..7d7177b 100644 --- a/redis-actionpack.gemspec +++ b/redis-actionpack.gemspec @@ -12,6 +12,7 @@ Gem::Specification.new do |s| s.description = "#{s.summary}. Used for storing the Rails session in Redis." s.license = 'MIT' s.metadata = { + 'changelog_uri' => 'https://github.com/redis-store/redis-actionpack/blob/master/CHANGELOG.md', 'source_code_uri' => 'https://github.com/redis-store/redis-actionpack' }