diff options
author | Yusuke Nakamura <yusuke1994525@gmail.com> | 2023-01-18 20:40:09 +0900 |
---|---|---|
committer | Yusuke Nakamura <yusuke1994525@gmail.com> | 2023-01-18 20:41:54 +0900 |
commit | f4739c9e49daa3bcbe31c2129286279e398bda26 (patch) | |
tree | 1f6eb0b3978402dd0077cb02bef7b6a1663bc3ce /json-java.gemspec | |
parent | 63bc6ae289a419195ff9bcab0f0fc58e2ace372a (diff) | |
download | json-f4739c9e49daa3bcbe31c2129286279e398bda26.tar.gz |
Fix homepage url in gemspec
GitHub Pages now hosted on *.github.io
Diffstat (limited to 'json-java.gemspec')
-rw-r--r-- | json-java.gemspec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/json-java.gemspec b/json-java.gemspec index 1ddfdc9..87d8c87 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' } |