Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds kat formula #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Formula/kat.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class Kat < Formula
desc "CLI for Kafka admin operations."
homepage "https://github.com/gojekfarm/kat"
url "https://github.com/gojekfarm/kat/releases/download/v0.0.1/kat_0.0.1_Darwin_x86_64.tar.gz"
sha256 "b0d2334b0b4fbbdc9e11d3078d5ff41ada08afc89c5603e8bf7b273350c6f9e2"
head "https://github.com/gojekfarm/kat.git"

bottle :unneeded

def install
bin.install "kat"
end

test do
system "#{bin}/kat", "--help"
end
end
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ Homebrew Formulas for GO-JEK OpenSource Tools
* Install [Homebrew](https://docs.brew.sh/Installation)
* `brew tap gojek/tap`
* `brew install proctor`
* To get SHA256 associated with a release version
```brew fetch Formula/<formula-name.rb>```