7e56859a4a
Due to the removal of growl-notify from Homebrew I'm removing the dependency from the growly formula. Closes Homebrew/homebrew#9339. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
359 B
Ruby
16 lines
359 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'
|
|
md5 'a3e4922d619cfeb00009dc55163f0974'
|
|
|
|
def install
|
|
bin.install 'growly'
|
|
end
|
|
|
|
def test
|
|
system 'growly "echo Hello, world!"'
|
|
end
|
|
end
|