has 1.4.0 (new formula)

has 1.4.0

Closes #108038.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Wu Zhenyu 2022-08-14 22:45:11 +08:00 committed by BrewTestBot
parent 42e84ca8c9
commit 2ec72085b4
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 16 additions and 0 deletions

16
Formula/has.rb Normal file
View File

@ -0,0 +1,16 @@
class Has < Formula
desc "Checks presence of various command-line tools and their versions on the path"
homepage "https://github.com/kdabir/has"
url "https://github.com/kdabir/has/archive/refs/tags/v1.4.0.tar.gz"
sha256 "0e73552dbf59e3da0d9254da87c94599595c9ea07c69a62a4853e69bbf3f0d7d"
license "MIT"
head "https://github.com/kdabir/has.git", branch: "master"
def install
bin.install "has"
end
test do
assert_match "has v1.4.0", shell_output("#{bin}/has")
end
end