2009-12-11 16:13:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hub < Formula
|
2013-07-13 01:22:29 +00:00
|
|
|
homepage 'http://hub.github.com/'
|
2013-07-09 20:53:02 +00:00
|
|
|
url 'https://github.com/github/hub/archive/v1.10.6.tar.gz'
|
2013-04-25 11:08:27 +00:00
|
|
|
sha1 'e29d158c65a10ef3889f4af438bf1fb50fbd0536'
|
2013-07-09 20:53:02 +00:00
|
|
|
head 'https://github.com/github/hub.git'
|
2012-11-22 18:58:28 +00:00
|
|
|
|
2009-12-11 16:13:57 +00:00
|
|
|
def install
|
2013-01-27 22:38:17 +00:00
|
|
|
rake "install", "prefix=#{prefix}"
|
2013-01-27 22:34:26 +00:00
|
|
|
bash_completion.install 'etc/hub.bash_completion.sh'
|
|
|
|
zsh_completion.install 'etc/hub.zsh_completion' => '_hub'
|
2012-03-20 22:51:50 +00:00
|
|
|
end
|
|
|
|
|
2013-01-27 22:38:17 +00:00
|
|
|
test do
|
|
|
|
HOMEBREW_REPOSITORY.cd do
|
2013-06-09 02:26:21 +00:00
|
|
|
assert_equal 'bin/brew', `#{bin}/git ls-files -- bin`.strip
|
2012-07-06 08:37:57 +00:00
|
|
|
end
|
|
|
|
end
|
2009-12-11 16:13:57 +00:00
|
|
|
end
|