From 8fe0c3faf942d38ae261035791c387a12508cf68 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Mon, 19 Aug 2024 12:28:27 +0200 Subject: [PATCH] gemspec: remove homepage_uri This raises the following error: ``` WARNING: You have specified the uri: https://github.com/voxpupuli/json-schema/ for all of the following keys: homepage_uri source_code_uri Only the first one will be shown on rubygems.org ``` --- json-schema.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/json-schema.gemspec b/json-schema.gemspec index 0c930599..ddb4a470 100644 --- a/json-schema.gemspec +++ b/json-schema.gemspec @@ -7,7 +7,6 @@ Gem::Specification.new do |s| s.metadata = { 'source_code_uri' => s.homepage, 'changelog_uri' => "#{s.homepage}/blob/master/CHANGELOG.md", - 'homepage_uri' => s.homepage, 'bug_tracker_uri' => "#{s.homepage}/issues", } s.summary = 'Ruby JSON Schema Validator'