2013-05-28 11:27:32 +00:00
|
|
|
class Ghi < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Work on GitHub issues on the command-line"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/stephencelis/ghi"
|
2016-02-26 12:01:32 +00:00
|
|
|
url "https://github.com/stephencelis/ghi/archive/1.1.1.tar.gz"
|
|
|
|
sha256 "a19fd947f1268d9f087d2a342964dfc1cb3aa96de970e82b8daf22461e07e49b"
|
2015-10-23 11:04:21 +00:00
|
|
|
head "https://github.com/stephencelis/ghi.git"
|
|
|
|
|
|
|
|
bottle :unneeded
|
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
|