homebrew-core/Formula/nave.rb
Igor Kapkov 259e1c88cb nave 2.4.1
Closes #40493.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-05-30 14:24:11 +02:00

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.1.tar.gz"
sha256 "68fe582a46a66ea5f04f1ffe85836b41e9918d3110dfe930f9f537623a8effe7"
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