47c1595bc4
Closes #2316. Signed-off-by: ilovezfs <ilovezfs@icloud.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/v1.0.1.tar.gz"
|
|
sha256 "9ba408d795a33f2df0ada548ea962bfbff75ea179ceabf5bc1c1a786e45ba26e"
|
|
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
|