Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gemspec with correct release notes URL, etc. #2036

Merged
merged 1 commit into from Sep 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .rubocop.yml
Expand Up @@ -8,6 +8,7 @@ Lint/AmbiguousBlockAssociation:
false
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*"
- "lib/**/*.rake"
Style/BarePercentLiterals:
Expand Down
8 changes: 6 additions & 2 deletions capistrano.gemspec
Expand Up @@ -11,9 +11,13 @@ Gem::Specification.new do |gem|
gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com"]
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.homepage = "https://capistranorb.com/"
gem.metadata = {
"changelog_uri" => "https://github.com/capistrano/capistrano/blob/master/CHANGELOG.md"
"bug_tracker_uri" => "https://github.com/capistrano/capistrano/issues",
"changelog_uri" => "https://github.com/capistrano/capistrano/releases",
"source_code_uri" => "https://github.com/capistrano/capistrano",
"homepage_uri" => "https://capistranorb.com/",
"documentation_uri" => "https://capistranorb.com/"
}
gem.files = `git ls-files -z`.split("\x0").reject { |f| f =~ /^docs/ }
gem.executables = %w(cap capify)
Expand Down