From 38fbbaecdbb87f299949c0d332b9b59121eae284 Mon Sep 17 00:00:00 2001 From: mark-young-atg <113439900+mark-young-atg@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:40:12 +0100 Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/jsbundling-rails (#189) By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/jsbundling-rails 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/ --- jsbundling-rails.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsbundling-rails.gemspec b/jsbundling-rails.gemspec index a175115..eda085f 100644 --- a/jsbundling-rails.gemspec +++ b/jsbundling-rails.gemspec @@ -13,4 +13,6 @@ Gem::Specification.new do |spec| spec.files += ["LICENSE", "README.md"] spec.add_dependency "railties", ">= 6.0.0" + + spec.metadata["changelog_uri"] = spec.homepage + "/releases" end