From 23c8903d1a0c64905913781ef28b6622a4ad891e Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 24 Apr 2024 23:15:44 -0600 Subject: [PATCH] Add source_code_uri (+ other metadata) to gemspec This is necessary in order to get this gem to show up on tea.xyz. Source: --- super_diff.gemspec | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/super_diff.gemspec b/super_diff.gemspec index 7c80d48a..ef91f11e 100644 --- a/super_diff.gemspec +++ b/super_diff.gemspec @@ -13,6 +13,12 @@ Gem::Specification.new do |s| SuperDiff is a gem that hooks into RSpec to intelligently display the differences between two data structures of any type. DESC + s.metadata = { + "bug_tracker_uri" => "https://github.com/mcmire/super_diff/issues", + "changelog_uri" => + "https://github.com/mcmire/super_diff/blob/main/CHANGELOG.md", + "source_code_uri" => "https://github.com/mcmire/super_diff" + } s.required_ruby_version = ">= 3" s.files = %w[README.md super_diff.gemspec] + Dir["lib/**/*"]