homebrew-core/Formula/growly.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

15 lines
439 B
Ruby

class Growly < Formula
desc "Redirect command output to a growl notification"
homepage "https://github.com/ryankee/growly"
head "https://github.com/ryankee/growly.git"
url "https://github.com/downloads/ryankee/growly/growly-v0.2.0.tar.gz"
sha256 "3e803207aa15e3a1ee33fc388a073bd84230dce2c579295ce26b857987e78a79"
def install
bin.install "growly"
end
test do
system "#{bin}/growly", "echo Hello, world!"
end
end