homebrew-core/Formula/nodebrew.rb
oinuma-kazuhiro c3d6f13e3e nodebrew 0.7.4 (new formula)
Closes Homebrew/homebrew#29760.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-06-02 11:53:34 +01:00

31 lines
839 B
Ruby

require "formula"
class Nodebrew < Formula
homepage "https://github.com/hokaccha/nodebrew"
url "https://github.com/hokaccha/nodebrew/archive/v0.7.4.tar.gz"
sha1 "b60f9048837a15eef2420e9ffbced6d57b753534"
head "https://github.com/hokaccha/nodebrew.git"
def install
bin.install "nodebrew"
system "#{bin}/nodebrew", "setup_dirs"
bash_completion.install "completions/bash/nodebrew-completion" => "nodebrew"
zsh_completion.install "completions/zsh/_nodebrew"
end
def caveats; <<-EOS.undent
Add path:
export PATH=$HOME/.nodebrew/current/bin:$PATH
To use Homebrew's directories rather than ~/.nodebrew add to your profile:
export NODEBREW_ROOT=#{var}/nodebrew
EOS
end
test do
IO.popen("nodebrew ls-remote") do |pipe|
assert pipe.read.include?("v0.10.0")
end
end
end