git-parsec 0.3.0

Git worktree lifecycle manager — ticket to PR in one command. Parallel AI agent workflows with Jira & GitHub Issues integration.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Parsec < Formula
  desc "Full-lifecycle git worktree manager with ticket tracker integration"
  homepage "https://erishforg.github.io/git-parsec/"
  url "https://github.com/erishforG/git-parsec/archive/refs/tags/v0.1.0.tar.gz"
  # sha256 will be filled after release
  license "MIT"

  depends_on "rust" => :build

  def install
    system "cargo", "install", *std_cargo_args
  end

  test do
    assert_match "parsec", shell_output("#{bin}/parsec --version")
  end
end