From e90b31a61df0c850d1ce44e73df55d56f18cc127 Mon Sep 17 00:00:00 2001 From: fynsta <63241108+fynsta@users.noreply.github.com> Date: Sat, 22 Jun 2024 15:21:54 +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 --- amazing_print.gemspec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/amazing_print.gemspec b/amazing_print.gemspec index 1dcd6e1..1d76f79 100644 --- a/amazing_print.gemspec +++ b/amazing_print.gemspec @@ -20,6 +20,9 @@ Gem::Specification.new do |s| s.summary = 'Pretty print Ruby objects with proper indentation and colors' s.description = 'Great Ruby debugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins' s.license = 'MIT' + s.metadata = { + "changelog_uri" => "https://github.com/amazing-print/amazing_print/blob/master/CHANGELOG.md" + } s.files = Dir['[A-Z]*[^~]'] + Dir['lib/**/*.rb'] + Dir['spec/**/*'] + ['.gitignore'] s.executables = []