Branch
Hash :
f53ca79b
Author :
Thomas de Grivel
Date :
2025-04-22T17:05:19
wip
defmodule Rbpkg do
def info = fn () {
Tag.from_str(system(["rbpkg", "info"]))
}
def list_packages = fn () {
List.filter(Str.split(system(["rbpkg", "list"]), "\n"),
fn (x) { if x != "" do x end })
}
def package_info = fn (repo, tree) {
Tag.from_str(system(["rbpkg", "info", repo, tree]))
}
end