4c75bdf1ac
Since there's no bottle required here we can just gently nudge people with a direct failure rather than a caveat 99.9% of people will never bother reading. Closes Homebrew/homebrew#49790. Closes Homebrew/homebrew#50186. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
20 lines
497 B
Ruby
20 lines
497 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.1.tar.gz"
|
|
sha256 "a19fd947f1268d9f087d2a342964dfc1cb3aa96de970e82b8daf22461e07e49b"
|
|
head "https://github.com/stephencelis/ghi.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "pygments.rb" => :ruby
|
|
|
|
def install
|
|
bin.install "ghi"
|
|
man1.install "man/ghi.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ghi", "--version"
|
|
end
|
|
end
|