2013-09-12 09:27:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Fswatch < Formula
|
|
|
|
homepage 'https://github.com/alandipert/fswatch'
|
2013-11-20 16:00:24 +00:00
|
|
|
url 'https://github.com/alandipert/fswatch/archive/r0.0.2.tar.gz'
|
|
|
|
sha1 '80dcf0d4af0b28f1b777528050f2e094218cee5f'
|
2013-09-12 09:27:09 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system 'make'
|
|
|
|
bin.install 'fswatch'
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "fswatch 2>&1| grep 'You must specify a directory to watch'"
|
|
|
|
end
|
|
|
|
end
|