23 lines
543 B
Ruby
23 lines
543 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Nvm < Formula
|
||
|
homepage 'https://github.com/creationix/nvm'
|
||
|
head 'https://github.com/creationix/nvm.git'
|
||
|
url 'https://github.com/creationix/nvm/archive/v0.2.0.tar.gz'
|
||
|
sha1 'e0c5b98764194951c984c2b4d325a9fd7cd2cdf2'
|
||
|
|
||
|
def install
|
||
|
prefix.install 'nvm.sh'
|
||
|
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
|