From 97910c65403f92f6bbbc187b5b5c2cf9f77cfa6b Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 16 Apr 2020 08:43:11 +0200 Subject: [PATCH] gemspec: Add metadata URIs --- annotate.gemspec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/annotate.gemspec b/annotate.gemspec index b98a5ca69..81e2e6967 100644 --- a/annotate.gemspec +++ b/annotate.gemspec @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.executables = ['annotate'] s.extra_rdoc_files = ['README.md', 'CHANGELOG.md'] s.files = `git ls-files -z LICENSE.txt *.md *.gemspec bin lib`.split("\x0") - s.homepage = 'http://github.com/ctran/annotate_models' + s.homepage = 'https://github.com/ctran/annotate_models' s.licenses = ['Ruby'] s.require_paths = ['lib'] s.rubygems_version = '2.1.11' @@ -25,5 +25,8 @@ Gem::Specification.new do |s| s.add_runtime_dependency(%q, '>= 10.4', '< 14.0') s.add_runtime_dependency(%q, ['>= 3.2', '< 7.0']) - s.metadata = { "github_repo" => "ssh://github.com/ctran/annotate_models" } + s.metadata = { + "bug_tracker_uri" => "https://github.com/ctran/annotate_models/issues/", + "source_code_uri" => "https://github.com/ctran/annotate_models.git" + } end