22 lines
715 B
Ruby
22 lines
715 B
Ruby
class TmuxinatorCompletion < Formula
|
|
desc "Shell completion for Tmuxinator"
|
|
homepage "https://github.com/tmuxinator/tmuxinator"
|
|
url "https://github.com/tmuxinator/tmuxinator/archive/v0.10.1.tar.gz"
|
|
sha256 "35b73f61ebb68d7fc4545b86d7f6d15393c517a5624334b08cfe8a99ac4e82f2"
|
|
|
|
head "https://github.com/tmuxinator/tmuxinator.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bash_completion.install "completion/tmuxinator.bash" => "tmuxinator"
|
|
zsh_completion.install "completion/tmuxinator.zsh" => "_tmuxinator"
|
|
fish_completion.install Dir["completion/*.fish"]
|
|
end
|
|
|
|
test do
|
|
assert_match "-F _tmuxinator",
|
|
shell_output("source #{bash_completion}/tmuxinator && complete -p tmuxinator")
|
|
end
|
|
end
|