class Gitbay < Formula desc "CLI for gitbay, the CLI-first git forge" homepage "https://gitbay.org" url "https://gitbay.org/krz/gitbay.git", tag: "v0.4.0", revision: "b4684c088d2b99f0f42c4e95231c4c0edc122323" license "0BSD" head "https://gitbay.org/krz/gitbay.git", branch: "main" depends_on "go" => :build def install system "go", "build", *std_go_args(ldflags: "-s -w"), "./cmd/gitbay" end test do assert_match "forge", shell_output("#{bin}/gitbay --help") end end