2009-12-11 16:13:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hub < Formula
|
2012-03-20 22:51:50 +00:00
|
|
|
homepage 'http://defunkt.io/hub/'
|
2013-03-02 05:12:35 +00:00
|
|
|
url 'https://github.com/defunkt/hub/tarball/v1.10.5'
|
|
|
|
sha1 '397d70213e653c6a503d64e95826c696dc6e099e'
|
2012-11-22 18:58:28 +00:00
|
|
|
head 'https://github.com/defunkt/hub.git'
|
|
|
|
|
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
|
|
|
|
`#{bin}/hub ls-files -- bin`.chomp == 'bin/brew'
|
2012-07-06 08:37:57 +00:00
|
|
|
end
|
|
|
|
end
|
2009-12-11 16:13:57 +00:00
|
|
|
end
|