2013-12-02 23:27:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Nvm < Formula
|
|
|
|
homepage 'https://github.com/creationix/nvm'
|
|
|
|
head 'https://github.com/creationix/nvm.git'
|
2014-04-24 15:27:56 +00:00
|
|
|
url 'https://github.com/creationix/nvm/archive/v0.5.0.tar.gz'
|
|
|
|
sha1 'c66c6f1f227ef4de0e48b48f1fb5f0ef18f54a06'
|
2013-12-02 23:27:25 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install 'nvm.sh'
|
2014-03-08 00:59:32 +00:00
|
|
|
bash_completion.install 'bash_completion' => 'nvm'
|
2013-12-02 23:27:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats;
|
|
|
|
<<-EOS.undent
|
|
|
|
Add the following to $HOME/.bashrc, $HOME/.zshrc, or your shell's equivalent configuration file:
|
|
|
|
|
|
|
|
source $(brew --prefix nvm)/nvm.sh
|
|
|
|
|
|
|
|
Type `nvm help` for further information.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|