233c77133c
Closes Homebrew/homebrew#47473. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
class Nvm < Formula
|
|
desc "Manage multiple Node.js versions"
|
|
homepage "https://github.com/creationix/nvm"
|
|
url "https://github.com/creationix/nvm/archive/v0.30.1.tar.gz"
|
|
sha256 "c3f063041407845ab4aa4ced6468084f8f63fb96fc8d904f66464e02c0867c5a"
|
|
head "https://github.com/creationix/nvm.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
prefix.install "nvm.sh", "nvm-exec"
|
|
bash_completion.install "bash_completion" => "nvm"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Please note that upstream has asked us to make explicit managing
|
|
nvm via Homebrew is unsupported by them and you should check any
|
|
problems against the standard nvm install method prior to reporting.
|
|
|
|
You should create NVM's working directory if it doesn't exist:
|
|
|
|
mkdir ~/.nvm
|
|
|
|
Add the following to #{shell_profile} or your desired shell
|
|
configuration file:
|
|
|
|
export NVM_DIR=~/.nvm
|
|
. $(brew --prefix nvm)/nvm.sh
|
|
|
|
You can set $NVM_DIR to any location, but leaving it unchanged from
|
|
#{prefix} will destroy any nvm-installed Node installations
|
|
upon upgrade/reinstall.
|
|
|
|
Type `nvm help` for further information.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
output = pipe_output("#{prefix}/nvm-exec 2>&1")
|
|
assert_no_match /No such file or directory/, output
|
|
assert_no_match /nvm: command not found/, output
|
|
assert_match /Node Version Manager/, output
|
|
end
|
|
end
|