homebrew-core/Formula/gh.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

37 lines
1.1 KiB
Ruby

class Gh < Formula
desc "GitHub command-line client"
homepage "https://github.com/jingweno/gh"
url "https://github.com/jingweno/gh/archive/v2.1.0.tar.gz"
sha256 "3435c95e78c71589c983e2cafa8948e1abf73aaa033e7fb9d891c052ce25f4f3"
head "https://github.com/jingweno/gh.git"
bottle do
cellar :any
revision 1
sha1 "2f7d94e9d932fa8a275b097c1756c8827511de17" => :yosemite
sha1 "bac12bb9f1b776a10eab9d7b3fd859f4fb459a23" => :mavericks
sha1 "9706eaf67eed09dc7e1267afed043c32c67c4ca1" => :mountain_lion
sha1 "3f46e4ee7a3e2d63e514f057e9dd8e116b3c18e2" => :lion
end
depends_on "go" => :build
option "without-completions", "Disable bash/zsh completions"
def install
system "script/make", "--no-update"
bin.install "gh"
man1.install "man/gh.1"
if build.with? "completions"
bash_completion.install "etc/gh.bash_completion.sh"
zsh_completion.install "etc/gh.zsh_completion" => "_gh"
end
end
test do
HOMEBREW_REPOSITORY.cd do
assert_equal "bin/brew", `#{bin}/gh ls-files -- bin`.strip
end
end
end