homebrew-core/Formula/kubectx.rb
2019-11-10 07:49:14 +01:00

27 lines
969 B
Ruby

class Kubectx < Formula
desc "Tool that can switch between kubectl contexts easily and create aliases"
homepage "https://github.com/ahmetb/kubectx"
url "https://github.com/ahmetb/kubectx/archive/v0.7.1.tar.gz"
sha256 "6df4def2caf5a9c291310124098ad6c4c3123936ddd4080b382b9f7930a233ec"
head "https://github.com/ahmetb/kubectx.git"
bottle :unneeded
depends_on "kubernetes-cli"
def install
bin.install "kubectx", "kubens"
bash_completion.install "completion/kubectx.bash" => "kubectx"
bash_completion.install "completion/kubens.bash" => "kubens"
zsh_completion.install "completion/kubectx.zsh" => "_kubectx"
zsh_completion.install "completion/kubens.zsh" => "_kubens"
fish_completion.install "completion/kubectx.fish"
fish_completion.install "completion/kubens.fish"
end
test do
assert_match "USAGE:", shell_output("#{bin}/kubectx -h 2>&1")
assert_match "USAGE:", shell_output("#{bin}/kubens -h 2>&1")
end
end