2011-09-17 03:14:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Growly < Formula
|
|
|
|
homepage 'https://github.com/ryankee/growly'
|
2011-10-10 20:17:11 +00:00
|
|
|
head 'https://github.com/ryankee/growly.git'
|
2011-09-17 03:14:03 +00:00
|
|
|
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
|