2013-12-02 23:27:25 +00:00
|
|
|
class Nvm < Formula
|
2014-05-16 14:47:02 +00:00
|
|
|
homepage "https://github.com/creationix/nvm"
|
2015-04-10 18:08:47 +00:00
|
|
|
url "https://github.com/creationix/nvm/archive/v0.24.1.tar.gz"
|
|
|
|
sha256 "0008754e7421c55e66f36c4a83ca775928f7b2e7a0543098f0050d9780419b2a"
|
2014-05-16 14:47:02 +00:00
|
|
|
head "https://github.com/creationix/nvm.git"
|
2013-12-02 23:27:25 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-16 14:47:02 +00:00
|
|
|
prefix.install "nvm.sh"
|
|
|
|
bash_completion.install "bash_completion" => "nvm"
|
2013-12-02 23:27:25 +00:00
|
|
|
end
|
|
|
|
|
2014-05-16 14:47:02 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2015-01-23 23:03:32 +00:00
|
|
|
Add NVM's working directory to your $HOME path (if it doesn't exist):
|
2013-12-02 23:27:25 +00:00
|
|
|
|
2015-01-23 23:03:32 +00:00
|
|
|
mkdir ~/.nvm
|
2013-12-02 23:27:25 +00:00
|
|
|
|
2015-01-23 23:03:32 +00:00
|
|
|
Add the following to $HOME/.bashrc, $HOME/.zshrc, or your shell's
|
|
|
|
equivalent configuration file:
|
2014-05-11 01:56:57 +00:00
|
|
|
|
|
|
|
export NVM_DIR=~/.nvm
|
2015-01-23 23:03:32 +00:00
|
|
|
source $(brew --prefix nvm)/nvm.sh
|
2015-01-14 04:15:51 +00:00
|
|
|
|
2013-12-02 23:27:25 +00:00
|
|
|
Type `nvm help` for further information.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|