From c784ee9276388376af561939ae3a3f028e2ef387 Mon Sep 17 00:00:00 2001 From: fynsta <63241108+fynsta@users.noreply.github.com> Date: Sun, 23 Jun 2024 00:26:12 +0200 Subject: [PATCH] Add changelog_uri to gemspec Documented here: https://guides.rubygems.org/specification-reference/#metadata Useful for running https://github.com/MaximeD/gem_updater --- twilio-ruby.gemspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/twilio-ruby.gemspec b/twilio-ruby.gemspec index e21615308..1b50c8d39 100644 --- a/twilio-ruby.gemspec +++ b/twilio-ruby.gemspec @@ -14,7 +14,10 @@ Gem::Specification.new do |spec| 'building TwiML, and generating Twilio JWT Capability Tokens' spec.homepage = 'https://github.com/twilio/twilio-ruby' spec.license = 'MIT' - spec.metadata = { 'yard.run' => 'yri' } # use "yard" to build full HTML docs + spec.metadata = { + 'yard.run' => 'yri', # use "yard" to build full HTML docs + 'changelog_uri' => 'https://github.com/twilio/twilio-ruby/blob/main/CHANGES.md' + } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match?(%r{^(spec)/}) } spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }