43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
class Anyenv < Formula
|
|
desc "All in one for **env"
|
|
homepage "https://anyenv.github.io/"
|
|
url "https://github.com/anyenv/anyenv/archive/v1.1.2.tar.gz"
|
|
sha256 "414dd42b262cc0ddb8ce77f2f2971943b55a045286a85232372e42d60b16389f"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d07da85e43b8fca089c90ca923593f4d96732f5b05f6a20026f0d219d68bba3b" => :catalina
|
|
sha256 "d07da85e43b8fca089c90ca923593f4d96732f5b05f6a20026f0d219d68bba3b" => :mojave
|
|
sha256 "d07da85e43b8fca089c90ca923593f4d96732f5b05f6a20026f0d219d68bba3b" => :high_sierra
|
|
end
|
|
|
|
def install
|
|
prefix.install %w[bin completions libexec]
|
|
end
|
|
|
|
test do
|
|
Dir.mktmpdir do |dir|
|
|
profile = "#{dir}/.profile"
|
|
File.open(profile, "w") do |f|
|
|
content = <<~EOS
|
|
export ANYENV_ROOT=#{dir}/anyenv
|
|
export ANYENV_DEFINITION_ROOT=#{dir}/anyenv-install
|
|
eval "$(anyenv init -)"
|
|
EOS
|
|
f.write(content)
|
|
end
|
|
|
|
cmds = <<~EOS
|
|
anyenv install --force-init
|
|
anyenv install --list
|
|
anyenv install rbenv
|
|
rbenv install --list
|
|
EOS
|
|
cmds.split("\n").each do |cmd|
|
|
shell_output("source #{profile} && #{cmd}")
|
|
end
|
|
end
|
|
end
|
|
end
|