a6f4dae32a
Closes Homebrew/homebrew#27302. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
382 B
Ruby
17 lines
382 B
Ruby
require 'formula'
|
|
|
|
class Ghi < Formula
|
|
homepage 'https://github.com/stephencelis/ghi'
|
|
url 'https://github.com/stephencelis/ghi/archive/0.9.2.tar.gz'
|
|
head 'https://github.com/stephencelis/ghi.git'
|
|
sha1 'c62c8d0e8e510db82ca3880a13c4f965c728cfb5'
|
|
|
|
def install
|
|
bin.install "ghi"
|
|
man1.install "man/ghi.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ghi", "--version"
|
|
end
|
|
end
|