homesick-completion: import from homebrew/completions.

master
Mike McQuaid 2017-01-23 15:26:30 +00:00
parent 7e1f8fc17c
commit feda884b55
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
class HomesickCompletion < Formula
desc "Bash completion for Homesick"
homepage "https://github.com/MasterRoot24/homesick-completion"
url "https://github.com/MasterRoot24/homesick-completion/archive/v1.0.0.tar.gz"
sha256 "f9953d92dc5c0d9770d502a68651795c78f5d7bd6078cd747e77ebc602c43609"
bottle :unneeded
def install
bash_completion.install "homesick"
end
test do
assert_match "-F _homesick",
shell_output("source #{bash_completion}/homesick && complete -p homesick")
end
end