homebrew-core/Formula/has.rb

17 lines
494 B
Ruby
Raw Normal View History

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