8adce61538
Growlme is a simple command-line tool to execute a command in a subshell and notify growl of success or failure. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
10 lines
182 B
Ruby
10 lines
182 B
Ruby
require 'formula'
|
|
|
|
class Growlme <Formula
|
|
head 'git://github.com/robey/growlme.git'
|
|
homepage 'http://github.com/robey/growlme'
|
|
|
|
def install
|
|
bin.install "growlme"
|
|
end
|
|
end
|