From 018ab9ba9ae61d5552b441df3ca55bfa37642aa3 Mon Sep 17 00:00:00 2001 From: Jared Moody Date: Wed, 11 Sep 2024 10:40:34 -0700 Subject: [PATCH] Add changelog_uri to gemspec metadata Makes it easier to navigate to the changelog from rubygems.org or CLI tools which use this field :) --- timezone.gemspec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/timezone.gemspec b/timezone.gemspec index 809e556..75eb674 100644 --- a/timezone.gemspec +++ b/timezone.gemspec @@ -15,6 +15,10 @@ Gem::Specification.new do |s| s.description = 'Accurate current and historical timezones for Ruby with ' \ 'support for Geonames and Google latitude - longitude lookups.' + s.metadata = { + 'changelog_uri' => 'https://github.com/panthomakos/timezone/blob/master/CHANGES.markdown' + } + s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`