homebrew-core/Formula/hub.rb
Andreas Braun 449c5cb1c1 hub 2.3.0-pre8 (devel)
Closes #6589.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-11-04 05:51:34 -07:00

44 lines
1.4 KiB
Ruby

class Hub < Formula
desc "Add GitHub support to git on the command-line"
homepage "https://hub.github.com/"
url "https://github.com/github/hub/archive/v2.2.9.tar.gz"
sha256 "b3cf227e38a34a56e37b7705a60bec258cea52174d8e030b559f74af647a70d6"
head "https://github.com/github/hub.git"
bottle do
cellar :any_skip_relocation
sha256 "6c23abd1255f04855fc1dfb8d44706337b728b5785e5b79f2319637575be93c7" => :sierra
sha256 "3452a355c8e4ef25714be7105d8946e01319e7760ffe97f7df3fc9dd21c89c76" => :el_capitan
sha256 "3f116b4c0587ab5d2a87d9d2f013ea058407ac2f9e845461d4970f36548e6be4" => :yosemite
end
devel do
url "https://github.com/github/hub/archive/v2.3.0-pre8.tar.gz"
version "2.3.0-pre8"
sha256 "1cea4a5958f7ca72c232ede173f5e4893e007aaddf6842d48665dff6fb1d7e19"
end
option "without-completions", "Disable bash/zsh completions"
depends_on "go" => :build
def install
system "script/build", "-o", "hub"
bin.install "hub"
man1.install Dir["man/*"]
if build.with? "completions"
bash_completion.install "etc/hub.bash_completion.sh"
zsh_completion.install "etc/hub.zsh_completion" => "_hub"
end
end
test do
system "git", "init"
%w[haunted house].each { |f| touch testpath/f }
system "git", "add", "haunted", "house"
system "git", "commit", "-a", "-m", "Initial Commit"
assert_equal "haunted\nhouse", shell_output("#{bin}/hub ls-files").strip
end
end