From 55679083faebb9a56a8763ec1f715bc420cba862 Mon Sep 17 00:00:00 2001 From: Nick Hammond Date: Tue, 27 Aug 2019 17:53:22 -0500 Subject: [PATCH] Add changelog_uri to metadata to easily link from rubygems.org (#2028) * Add changelog_uri to metadata to easily link from rubygems.org Reference: https://guides.rubygems.org/specification-reference/#metadata * Update capistrano.gemspec Co-Authored-By: Matt Brictson * Update capistrano.gemspec Co-Authored-By: Matt Brictson --- capistrano.gemspec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/capistrano.gemspec b/capistrano.gemspec index e5c58834..b98a9ac5 100644 --- a/capistrano.gemspec +++ b/capistrano.gemspec @@ -12,7 +12,9 @@ Gem::Specification.new do |gem| gem.description = "Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH." gem.summary = "Capistrano - Welcome to easy deployment with Ruby over SSH" gem.homepage = "http://capistranorb.com/" - + gem.metadata = { + "changelog_uri" => "https://github.com/capistrano/capistrano/blob/master/CHANGELOG.md" + } gem.files = `git ls-files -z`.split("\x0").reject { |f| f =~ /^docs/ } gem.executables = %w(cap capify) gem.test_files = gem.files.grep(%r{^(test|spec|features)/})