aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorWil Moore III2013-12-02 16:27:25 -0700
committerAdam Vandenberg2013-12-05 19:26:16 -0800
commit1c6d5583d7c79adba2f5e6f68a65a38fbde6f262 (patch)
tree5fed8588b0a7e5fd91ef4fec4b48caf29a9f5d28 /Library/Formula
parent49b60ad29df26fb695fc99f1cf81cda72a0927c2 (diff)
downloadhomebrew-1c6d5583d7c79adba2f5e6f68a65a38fbde6f262.tar.bz2
nvm 0.2.0
Closes #24886. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/nvm.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/nvm.rb b/Library/Formula/nvm.rb
new file mode 100644
index 000000000..51c1173e7
--- /dev/null
+++ b/Library/Formula/nvm.rb
@@ -0,0 +1,22 @@
+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