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