aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/npm.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-08-07 21:35:47 -0700
committerAdam Vandenberg2010-08-07 21:35:47 -0700
commite208ac6ba11bca83fc0fb04099d943fdfd1aaa73 (patch)
tree2ba6148b1d261a23acd3176442667f5b10796651 /Library/Formula/npm.rb
parent5952249901a3ddf1ce19bc94561d333154687f96 (diff)
downloadhomebrew-e208ac6ba11bca83fc0fb04099d943fdfd1aaa73.tar.bz2
npm 0.1.23
Diffstat (limited to 'Library/Formula/npm.rb')
-rw-r--r--Library/Formula/npm.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/npm.rb b/Library/Formula/npm.rb
index b4c6a29fb..e37ca2fc8 100644
--- a/Library/Formula/npm.rb
+++ b/Library/Formula/npm.rb
@@ -1,18 +1,17 @@
require 'formula'
class Npm <Formula
- url 'http://github.com/isaacs/npm/tarball/v0.1.20'
+ url 'http://github.com/isaacs/npm/tarball/v0.1.23'
homepage 'http://github.com/isaacs/npm'
- md5 '9ad6a2892ea673c03c9df528c4ac25d6'
+ md5 '8f1b08567985f90028492803785f2092'
head 'git://github.com/isaacs/npm.git'
depends_on 'node'
- def executable
- <<-EOS
+ def executable; <<-EOS
#!/bin/sh
exec "#{libexec}/cli.js" "$@"
- EOS
+EOS
end
def node_lib
@@ -53,7 +52,7 @@ exec "#{libexec}/cli.js" "$@"
(bin+"npm").write executable
end
- def caveats; <<-EOS
+ def caveats; <<-EOS.undent
npm will install binaries to:
#{share_bin}
You may want to add this to your PATH.