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-03-06 07:29:06 +00:00
|
|
|
url "https://github.com/creationix/nvm/archive/v0.24.0.tar.gz"
|
|
|
|
sha256 "f76800f248ebe611c8c2588553cc906d335baafbfd083ee6fdedee349a979c54"
|
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
|