2013-05-28 11:27:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ghi < Formula
|
|
|
|
homepage 'https://github.com/stephencelis/ghi'
|
2014-03-13 00:10:13 +00:00
|
|
|
url 'https://github.com/stephencelis/ghi/archive/0.9.3.tar.gz'
|
2014-03-07 20:29:56 +00:00
|
|
|
head 'https://github.com/stephencelis/ghi.git'
|
2014-03-13 00:10:13 +00:00
|
|
|
sha1 '59512443c778cacc8c0488e6ab64965f18b3a279'
|
2013-05-28 11:27:32 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "ghi"
|
|
|
|
man1.install "man/ghi.1"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2013-06-09 02:26:20 +00:00
|
|
|
system "#{bin}/ghi", "--version"
|
2013-05-28 11:27:32 +00:00
|
|
|
end
|
|
|
|
end
|