1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

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 <mattbrictson@users.noreply.github.com>

* Update capistrano.gemspec

Co-Authored-By: Matt Brictson <mattbrictson@users.noreply.github.com>
This commit is contained in:
Nick Hammond 2019-08-27 17:53:22 -05:00 committed by Matt Brictson
parent 50a307e390
commit 55679083fa

View file

@ -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.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.summary = "Capistrano - Welcome to easy deployment with Ruby over SSH"
gem.homepage = "http://capistranorb.com/" 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.files = `git ls-files -z`.split("\x0").reject { |f| f =~ /^docs/ }
gem.executables = %w(cap capify) gem.executables = %w(cap capify)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.test_files = gem.files.grep(%r{^(test|spec|features)/})