1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

update-bundled_gems: chomp ".git" suffix from the source code URI

This commit is contained in:
Nobuyoshi Nakada 2020-12-06 16:00:51 +09:00
parent 967ed35bbb
commit ea9f16a27f
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -8,6 +8,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/.*], "")
uri = uri.sub(%r[\Ahttps://github\.com/[^/]+/[^/]+\K/tree/.*], "").chomp(".git")
$_ = [gem.name, gem.version, uri].join(" ")
end