update-bundled_gems: support recent format, keep the tag to test

This commit is contained in:
Nobuyoshi Nakada 2020-12-06 15:59:46 +09:00
parent ea9f16a27f
commit e4e2a33560
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 2 additions and 1 deletions

View File

@ -9,5 +9,6 @@ unless /^[^#]/ !~ (gem = $F[0])
gem = src.fetch_spec(gem)
uri = gem.metadata["source_code_uri"] || gem.homepage
uri = uri.sub(%r[\Ahttps://github\.com/[^/]+/[^/]+\K/tree/.*], "").chomp(".git")
$_ = [gem.name, gem.version, uri].join(" ")
$F[3][$F[1]] = gem.version.to_s if $F[3] && $F[3].include?($F[1])
$_ = [gem.name, gem.version, uri, *$F[3..-1]].join(" ")
end