diff options
| author | Simon Whitaker | 2012-09-30 17:35:38 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-11-01 08:02:00 -0700 |
| commit | d74eef3a0baa69355495ef267e998098c5c9cbfe (patch) | |
| tree | 2133f0bc9beb21f1acf38c0708b2a9ceef52865b /Library | |
| parent | 7b51c65ea93fa962b4d0fa6e4be804e5911d916d (diff) | |
| download | homebrew-d74eef3a0baa69355495ef267e998098c5c9cbfe.tar.bz2 | |
gibo 1.0.1
Closes #15445.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gibo.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/gibo.rb b/Library/Formula/gibo.rb new file mode 100644 index 000000000..ef15387d1 --- /dev/null +++ b/Library/Formula/gibo.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Gibo < Formula + homepage 'https://github.com/simonwhitaker/gitignore-boilerplates' + url 'https://github.com/simonwhitaker/gitignore-boilerplates/tarball/1.0.1' + sha1 '63b46c7ac725a25f6b9df47cebc8f798ac048b1e' + + def install + bin.install "gibo" + (prefix/'etc/bash_completion.d').install 'gibo-completion.bash' + (share/'zsh/site-functions').install 'gibo-completion.zsh' => '_gibo' + end +end |
