homebrew-core/Formula/growly.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

16 lines
375 B
Ruby

require 'formula'
class Growly < Formula
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'
sha1 'f260315adbff902b14469cb755c2620868649cf1'
def install
bin.install 'growly'
end
test do
system "#{bin}/growly", "echo Hello, world!"
end
end