1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 18:34:46 +00:00
Files
Mole/Formula/mole.rb
2025-09-25 20:26:59 +08:00

15 lines
296 B
Ruby

class Mole < Formula
desc "Mole - Clean your Mac"
homepage "https://github.com/tw93/mole"
license "MIT"
head "https://github.com/tw93/mole.git", branch: "main"
def install
bin.install "mole"
end
test do
assert_match "Mole", shell_output("#{bin}/mole --help", 0)
end
end