このコミットが含まれているのは:
2026-04-22 02:06:15 +09:00
コミット 6b0d262040
8個のファイルの変更232行の追加16行の削除
+3 -4
ファイルの表示
@@ -8,10 +8,9 @@ module TagRepr
module_function
def base tag
tag.as_json(BASE)
tag.as_json(BASE).merge(aliases: tag.snapshot_aliases,
parents: tag.parents.map { _1.as_json(BASE) })
end
def many tags
tags.map { |t| base(t) }
end
def many(tags) = tags.map { |t| base(t) }
end