Skip to content

Commit

Permalink
Add metadata to gemspec
Browse files Browse the repository at this point in the history
Add metadata to Committe's gemspec. This includes a bug tracker URI,
changelog, and source code URI, but the main improvement is to tighten
up security by requiring the use of MFA on RubyGems for pushing new
versions.
  • Loading branch information
brandur committed May 13, 2024
1 parent 8f7326d commit 34077f6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions committee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,11 @@ Gem::Specification.new do |s|
s.add_development_dependency "rubocop"
s.add_development_dependency "rubocop-performance"
s.add_development_dependency "simplecov"

s.metadata = {
"bug_tracker_uri" => "https://github.com/interagent/committee/issues",
"changelog_uri" => "https://github.com/interagent/committee/blob/master/CHANGELOG.md",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/interagent/committee"
}
end

0 comments on commit 34077f6

Please sign in to comment.