mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 20:19:45 +00:00
15 lines
296 B
Ruby
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
|