From 22a87a09679317e6463a2733cc8a057846cce224 Mon Sep 17 00:00:00 2001 From: "automation-nsheaps[bot]" <251779498+automation-nsheaps[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 00:03:09 +0000 Subject: [PATCH] chore: update gs-stack-status to 0.0.1 --- Formula/gs-stack-status.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Formula/gs-stack-status.rb diff --git a/Formula/gs-stack-status.rb b/Formula/gs-stack-status.rb new file mode 100644 index 0000000..d3b69e8 --- /dev/null +++ b/Formula/gs-stack-status.rb @@ -0,0 +1,25 @@ +# typed: false +# frozen_string_literal: true + +class GsStackStatus < Formula + desc 'Terminal dashboard for git-spice stacked branch workflows' + homepage 'https://github.com/nsheaps/gs-stack-status' + url 'https://github.com/nsheaps/gs-stack-status/archive/refs/tags/v0.0.1.tar.gz' + sha256 'e6bab25ff644eb5559a322a98075327d2d5af1412d8d6f504a76b5e42457d131' + license 'MIT' + + head do + url 'https://github.com/nsheaps/gs-stack-status.git', branch: 'main' + end + + depends_on 'git-spice' + depends_on 'gum' + + def install + bin.install Dir['bin/*'] + end + + test do + assert_match 'gs-stack-status', shell_output("#{bin}/gs-stack-status --help 2>&1") + end +end