blob: e08d8a2f89367e316622377c605210b3ce0dd6f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Ghi < Formula
homepage 'https://github.com/stephencelis/ghi'
url 'https://github.com/stephencelis/ghi/archive/0.9.3.tar.gz'
head 'https://github.com/stephencelis/ghi.git'
sha1 '59512443c778cacc8c0488e6ab64965f18b3a279'
def install
bin.install "ghi"
man1.install "man/ghi.1"
end
test do
system "#{bin}/ghi", "--version"
end
end
|