1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

More metadata

This commit is contained in:
Nate Berkopec 2020-05-08 12:53:57 +09:00 committed by GitHub
parent 3060a75fcc
commit 0d560f391b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,16 @@ 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"
if s.respond_to?(:metadata=)
s.metadata = {
"bug_tracker_uri" => "https://github.com/puma/puma/issues",
"changelog_uri" => "https://github.com/puma/puma/blob/master/History.md"
"homepage_uri" => "http://puma.io",
"source_code_uri" => "https://github.com/puma/puma",
}
end
s.license = "BSD-3-Clause"
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
end