3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
434 B
Ruby
13 lines
434 B
Ruby
require 'formula'
|
|
|
|
class Gibo < Formula
|
|
homepage 'https://github.com/simonwhitaker/gitignore-boilerplates'
|
|
url 'https://github.com/simonwhitaker/gitignore-boilerplates/archive/1.0.1.tar.gz'
|
|
sha1 'f1c232bb04c1514586fda2e60fb11ab2fcdd8ea0'
|
|
|
|
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
|