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:
parent
50a307e390
commit
55679083fa
1 changed files with 3 additions and 1 deletions
|
@ -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)/})
|
||||||
|
|
Loading…
Reference in a new issue