homebrew-core/Formula/zsh-completions.rb
ilovezfs 2392b8448e zsh-completions: fix test
new test courtesy of zmwangx
2017-05-13 13:41:10 -07:00

40 lines
1.1 KiB
Ruby

class ZshCompletions < Formula
desc "Additional completion definitions for zsh"
homepage "https://github.com/zsh-users/zsh-completions"
url "https://github.com/zsh-users/zsh-completions/archive/0.25.0.tar.gz"
sha256 "6a89fb148313577ea81a36630bc2bf009aaaf74a116109cb33f422396e23ab0f"
head "https://github.com/zsh-users/zsh-completions.git"
bottle :unneeded
def install
pkgshare.install Dir["src/_*"]
end
def caveats
<<-EOS.undent
To activate these completions, add the following to your .zshrc:
fpath=(#{HOMEBREW_PREFIX}/share/zsh-completions $fpath)
You may also need to force rebuild `zcompdump`:
rm -f ~/.zcompdump; compinit
Additionally, if you receive "zsh compinit: insecure directories" warnings when attempting
to load these completions, you may need to run this:
chmod go-w '#{HOMEBREW_PREFIX}/share'
EOS
end
test do
(testpath/"test.zsh").write <<-EOS.undent
fpath=(#{pkgshare} $fpath)
autoload _ack
which _ack
EOS
assert_match /^_ack/, shell_output("/bin/zsh test.zsh")
end
end