53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
class Asdf < Formula
|
|
desc "Extendable version manager with support for Ruby, Node.js, Erlang & more"
|
|
homepage "https://asdf-vm.com/"
|
|
url "https://github.com/asdf-vm/asdf/archive/refs/tags/v0.11.0.tar.gz"
|
|
sha256 "ee66eb05688ce54dc1459bff90d043610492ebf393ddcf0847a295c92a9b2f7f"
|
|
license "MIT"
|
|
head "https://github.com/asdf-vm/asdf.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "8f0826eeb40dd4dde2399e299ef1231d1207da315143e5e8bccef5e2bb0ce033"
|
|
end
|
|
|
|
depends_on "autoconf"
|
|
depends_on "automake"
|
|
depends_on "coreutils"
|
|
depends_on "libtool"
|
|
depends_on "libyaml"
|
|
depends_on "openssl@3"
|
|
depends_on "readline"
|
|
depends_on "unixodbc"
|
|
|
|
def install
|
|
bash_completion.install "completions/asdf.bash"
|
|
fish_completion.install "completions/asdf.fish"
|
|
zsh_completion.install "completions/_asdf"
|
|
libexec.install Dir["*"]
|
|
touch libexec/"asdf_updates_disabled"
|
|
|
|
bin.write_exec_script libexec/"bin/asdf"
|
|
end
|
|
|
|
def caveats
|
|
s = "To use asdf, add the following line to your #{shell_profile}:\n"
|
|
|
|
s += if preferred == :fish
|
|
" source #{opt_libexec}/asdf.fish\n\n"
|
|
else
|
|
" . #{opt_libexec}/asdf.sh\n\n"
|
|
end
|
|
|
|
s += "Restart your terminal for the settings to take effect."
|
|
|
|
s
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/asdf version")
|
|
output = shell_output("#{bin}/asdf plugin-list 2>&1", 1)
|
|
assert_match "No plugins installed", output
|
|
assert_match "Update command disabled.", shell_output("#{bin}/asdf update", 42)
|
|
end
|
|
end
|