c450e55773
Closes #41352. Signed-off-by: Chongyu Zhu <i@lembacon.com>
17 lines
452 B
Ruby
17 lines
452 B
Ruby
class Nave < Formula
|
|
desc "Virtual environments for Node.js"
|
|
homepage "https://github.com/isaacs/nave"
|
|
url "https://github.com/isaacs/nave/archive/v2.4.2.tar.gz"
|
|
sha256 "31cca9a97c263936200989890d4ac08acb948118349d5356a7ac61d31a5ca4a0"
|
|
head "https://github.com/isaacs/nave.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "nave.sh" => "nave"
|
|
end
|
|
|
|
test do
|
|
assert_match "0.10.30", shell_output("#{bin}/nave ls-remote")
|
|
end
|
|
end
|