19 lines
532 B
Ruby
19 lines
532 B
Ruby
class Tfenv < Formula
|
|
desc "Terraform version manager inspired by rbenv"
|
|
homepage "https://github.com/kamatama41/tfenv"
|
|
url "https://github.com/kamatama41/tfenv/archive/v0.4.2.tar.gz"
|
|
sha256 "904958c4a80cab5a5c190d1c95e95522bf05dbe769a3fda969c474e083521166"
|
|
head "https://github.com/kamatama41/tfenv.git"
|
|
|
|
bottle :unneeded
|
|
|
|
conflicts_with "terraform", :because => "tfenv symlinks terraform binaries"
|
|
|
|
def install
|
|
prefix.install ["bin", "libexec"]
|
|
end
|
|
|
|
test do
|
|
system bin/"tfenv", "list-remote"
|
|
end
|
|
end
|