From f4739c9e49daa3bcbe31c2129286279e398bda26 Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Wed, 18 Jan 2023 20:40:09 +0900 Subject: [PATCH] Fix homepage url in gemspec GitHub Pages now hosted on *.github.io --- json-java.gemspec | 6 +++--- json.gemspec | 6 +++--- json_pure.gemspec | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/json-java.gemspec b/json-java.gemspec index 1ddfdc951..87d8c87f5 100644 --- a/json-java.gemspec +++ b/json-java.gemspec @@ -14,12 +14,12 @@ spec = Gem::Specification.new do |s| s.files = Dir["lib/**/*", "LICENSE"] - s.homepage = "http://flori.github.com/json" + s.homepage = "https://flori.github.io/json" s.metadata = { 'bug_tracker_uri' => 'https://github.com/flori/json/issues', 'changelog_uri' => 'https://github.com/flori/json/blob/master/CHANGES.md', - 'documentation_uri' => 'http://flori.github.io/json/doc/index.html', - 'homepage_uri' => 'http://flori.github.io/json/', + 'documentation_uri' => 'https://flori.github.io/json/doc/index.html', + 'homepage_uri' => s.homepage, 'source_code_uri' => 'https://github.com/flori/json', 'wiki_uri' => 'https://github.com/flori/json/wiki' } diff --git a/json.gemspec b/json.gemspec index 948e92c50..f4b2ae791 100644 --- a/json.gemspec +++ b/json.gemspec @@ -53,12 +53,12 @@ Gem::Specification.new do |s| "lib/json/pure/parser.rb", "lib/json/version.rb", ] - s.homepage = "http://flori.github.com/json" + s.homepage = "https://flori.github.io/json" s.metadata = { 'bug_tracker_uri' => 'https://github.com/flori/json/issues', 'changelog_uri' => 'https://github.com/flori/json/blob/master/CHANGES.md', - 'documentation_uri' => 'http://flori.github.io/json/doc/index.html', - 'homepage_uri' => 'http://flori.github.io/json/', + 'documentation_uri' => 'https://flori.github.io/json/doc/index.html', + 'homepage_uri' => s.homepage, 'source_code_uri' => 'https://github.com/flori/json', 'wiki_uri' => 'https://github.com/flori/json/wiki' } diff --git a/json_pure.gemspec b/json_pure.gemspec index e6e291454..883beb0e6 100644 --- a/json_pure.gemspec +++ b/json_pure.gemspec @@ -41,12 +41,12 @@ Gem::Specification.new do |s| "lib/json/pure/parser.rb".freeze, "lib/json/version.rb".freeze, ] - s.homepage = "http://flori.github.com/json".freeze + s.homepage = "https://flori.github.io/json".freeze s.metadata = { 'bug_tracker_uri' => 'https://github.com/flori/json/issues', 'changelog_uri' => 'https://github.com/flori/json/blob/master/CHANGES.md', - 'documentation_uri' => 'http://flori.github.io/json/doc/index.html', - 'homepage_uri' => 'http://flori.github.io/json/', + 'documentation_uri' => 'https://flori.github.io/json/doc/index.html', + 'homepage_uri' => s.homepage, 'source_code_uri' => 'https://github.com/flori/json', 'wiki_uri' => 'https://github.com/flori/json/wiki' }