homebrew-core/Formula/ghi.rb
Alex Chesters 84b10dae69 ghi 1.1.0
Update ghi to 1.1.0

Closes Homebrew/homebrew#48584.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-29 12:11:01 +00:00

18 lines
460 B
Ruby

class Ghi < Formula
desc "Work on GitHub issues on the command-line"
homepage "https://github.com/stephencelis/ghi"
url "https://github.com/stephencelis/ghi/archive/1.1.0.tar.gz"
sha256 "90ee10cefe9b83514eadb185b339a7147627c54c508e28f292e56719af6bfcb6"
head "https://github.com/stephencelis/ghi.git"
bottle :unneeded
def install
bin.install "ghi"
man1.install "man/ghi.1"
end
test do
system "#{bin}/ghi", "--version"
end
end