From f53d5f6687cd4fc95193b3718881cdcdfab4a9d6 Mon Sep 17 00:00:00 2001 From: Mark Young Date: Fri, 7 Jun 2024 14:43:53 +0100 Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/bindata By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/bindata 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/ --- bindata.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/bindata.gemspec b/bindata.gemspec index dabf93d..1a53069 100644 --- a/bindata.gemspec +++ b/bindata.gemspec @@ -31,4 +31,5 @@ Gem::Specification.new do |s| format. It is an easier ( and more readable ) alternative to ruby's #pack and #unpack methods. END + s.metadata['changelog_uri'] = s.homepage + '/blob/master/ChangeLog.rdoc' end