chore: Add Homebrew formula for v0.10.1 and remove old formulas
This commit is contained in:
29
bd-formula-0.10.1.rb
Normal file
29
bd-formula-0.10.1.rb
Normal file
@@ -0,0 +1,29 @@
|
||||
class Bd < Formula
|
||||
desc "AI-supervised issue tracker for coding workflows"
|
||||
homepage "https://github.com/steveyegge/beads"
|
||||
url "https://github.com/steveyegge/beads/archive/refs/tags/v0.10.1.tar.gz"
|
||||
sha256 "efe26286a1747c10c8e6fee62226d6a4bb1b52520a721e89d9b469026f81d4dd"
|
||||
license "MIT"
|
||||
head "https://github.com/steveyegge/beads.git", branch: "main"
|
||||
|
||||
depends_on "go" => :build
|
||||
|
||||
def install
|
||||
# Build the CLI
|
||||
system "go", "build", *std_go_args(ldflags: "-s -w -X main.Version=#{version}"), "./cmd/bd"
|
||||
end
|
||||
|
||||
test do
|
||||
# Test that the binary runs and outputs version
|
||||
output = shell_output("#{bin}/bd version")
|
||||
assert_match "bd version #{version}", output
|
||||
|
||||
# Test init command
|
||||
system bin/"bd", "init", "--prefix=test"
|
||||
assert_predicate testpath/".beads/test.db", :exist?
|
||||
|
||||
# Test list command (should show no issues)
|
||||
list_output = shell_output("#{bin}/bd list --db=#{testpath}/.beads/test.db")
|
||||
assert_match "Found 0 issues", list_output
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user