From 33e56185b3981ab98dfc74f8e6bc1a6f7d4edd1d Mon Sep 17 00:00:00 2001 From: Chris Saez Date: Sat, 30 Nov 2024 00:45:07 -0800 Subject: [PATCH] feat(homebrew): Support homebrew via tap (#11) --- Formlula/badgetizr.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Formlula/badgetizr.rb diff --git a/Formlula/badgetizr.rb b/Formlula/badgetizr.rb new file mode 100644 index 0000000..de0c31b --- /dev/null +++ b/Formlula/badgetizr.rb @@ -0,0 +1,16 @@ +class Badgetizr < Formula + desc "Badgetizr is a tool to allow custom badges automatically added and updated according the content of your pull request." + homepage "https://github.com/aiKrice/homebrew-badgetizr" + url "https://github.com/aiKrice/homebrew-badgetizr/archive/refs/tags/1.1.3.tar.gz" + sha256 "75a2b06a34aac9ceade8da317f5cc10a2432f6d4d015b3248d1e5f2d5dde5e57" + license "MIT" + + depends_on "yq" + depends_on "gh" + + def install + bin.install "badgetizr.sh" => "badgetizr" + end + + end +