18 lines
528 B
Ruby
18 lines
528 B
Ruby
class Growly < Formula
|
|
desc "Redirect command output to a growl notification"
|
|
homepage "https://github.com/ryankee/growly"
|
|
url "https://github.com/downloads/ryankee/growly/growly-v0.2.0.tar.gz"
|
|
sha256 "3e803207aa15e3a1ee33fc388a073bd84230dce2c579295ce26b857987e78a79"
|
|
head "https://github.com/ryankee/growly.git"
|
|
|
|
disable! date: "2021-06-27", because: "depends on growlnotify which has been removed"
|
|
|
|
def install
|
|
bin.install "growly"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/growly", "echo Hello, world!"
|
|
end
|
|
end
|