Skip to content

Commit f8f945d

Browse files
authored
Enhance gemspec with additional metadata fields
Added bug tracker, homepage, and source code URIs to metadata.
1 parent b89565c commit f8f945d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

launchdarkly-server-sdk.gemspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ Gem::Specification.new do |spec|
1515
spec.homepage = "https://github.com/launchdarkly/ruby-server-sdk"
1616
spec.license = "Apache-2.0"
1717

18-
spec.metadata = {
19-
"changelog_uri" => "https://github.com/launchdarkly/ruby-server-sdk/blob/main/CHANGELOG.md",
20-
}
18+
spec.metadata["bug_tracker_uri"] = "https://github.com/launchdarkly/ruby-server-sdk/issues"
19+
spec.metadata["changelog_uri"] = "https://github.com/launchdarkly/ruby-server-sdk/blob/main/CHANGELOG.md"
20+
spec.metadata["homepage_uri"] = spec.homepage
21+
spec.metadata["source_code_uri"] = "https://github.com/launchdarkly/ruby-server-sdk"
2122

2223
spec.files = Dir["lib/**/*.rb", "README.md", "LICENSE.txt"]
2324
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)