From 8520fddc14c2907b81758574e4ec73539af942e6 Mon Sep 17 00:00:00 2001 From: Samuel Cochran Date: Thu, 15 Aug 2019 19:02:44 +1000 Subject: [PATCH] Add changelog uri to spec metadata (#1911) so that there is a "Changelog" link on https://rubygems.org/gems/puma --- puma.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/puma.gemspec b/puma.gemspec index b11ffec0..73b58adb 100644 --- a/puma.gemspec +++ b/puma.gemspec @@ -16,6 +16,7 @@ Gem::Specification.new do |s| s.files = `git ls-files -- bin docs ext lib tools`.split("\n") + %w[History.md LICENSE README.md] s.homepage = "http://puma.io" + s.metadata["changelog_uri"] = "https://github.com/puma/puma/blob/master/History.md" s.license = "BSD-3-Clause" s.required_ruby_version = Gem::Requirement.new(">= 2.2") end