From 8e27daf9f52f6bf07ee7aeafba81efe4ad676abe Mon Sep 17 00:00:00 2001 From: fynsta <63241108+fynsta@users.noreply.github.com> Date: Sat, 22 Jun 2024 15:32:34 +0200 Subject: [PATCH] Add changelog_uri to gemspec Supported here: https://guides.rubygems.org/specification-reference/#metadata Useful for running https://github.com/MaximeD/gem_updater --- cancancan.gemspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cancancan.gemspec b/cancancan.gemspec index 2302e1f1..9bba76a4 100644 --- a/cancancan.gemspec +++ b/cancancan.gemspec @@ -10,7 +10,10 @@ Gem::Specification.new do |s| s.authors = ['Alessandro Rodi (Renuo AG)', 'Bryan Rite', 'Ryan Bates', 'Richard Wilson'] s.email = 'alessandro.rodi@renuo.ch' s.homepage = 'https://github.com/CanCanCommunity/cancancan' - s.metadata = { 'funding_uri' => 'https://github.com/sponsors/coorasse' } + s.metadata = { + 'funding_uri' => 'https://github.com/sponsors/coorasse', + 'changelog_uri' => 'https://github.com/CanCanCommunity/cancancan/blob/develop/CHANGELOG.md' + } s.summary = 'Simple authorization solution for Rails.' s.description = 'Simple authorization solution for Rails. All permissions are stored in a single location.' s.platform = Gem::Platform::RUBY