homebrew-core/Formula/kubectx.rb

29 lines
992 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.9.1.tar.gz"
sha256 "8f68e19b841a1f1492536dc27f9b93ea3204c7e4fd0ad2e3c483d1b8e95be675"
license "Apache-2.0"
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