aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
blob: bd117f7252507c6ec9b4f3b0a7638cd182b0fccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Hub < Formula
  url 'https://github.com/defunkt/hub/tarball/v1.9.0'
  homepage 'http://defunkt.io/hub/'
  head 'https://github.com/defunkt/hub.git'
  md5 '0f3b500947d0e9793d65f6b1b529b1c7'

  def install
    system "rake", "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 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