blob: a091afc7d64dd2efe9e8e82b36f76e9e0010bf6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require 'formula'
class Hub < Formula
url 'https://github.com/defunkt/hub/tarball/v1.10.1'
homepage 'http://defunkt.io/hub/'
head 'https://github.com/defunkt/hub.git'
md5 'd3ff9bcf489466a408020867b77f1d4d'
def install
system rake_bin, "install", "prefix=#{prefix}"
(prefix+'etc/bash_completion.d').install 'etc/hub.bash_completion.sh'
(share+'zsh/site-functions').install 'etc/hub.zsh_completion' => '_hub'
end
def rake_bin
require 'rbconfig'
ruby_rake = File.join RbConfig::CONFIG['bindir'], 'rake'
if File.exist? ruby_rake
ruby_rake
else
'/usr/bin/rake'
end
end
def caveats; <<-EOS.undent
Bash completion has been installed to:
#{etc}/bash_completion.d
zsh completion has been installed to:
#{HOMEBREW_PREFIX}/share/zsh/site-functions
EOS
end
end
|