blob: 341efbca44e666242f082f557c6adc8891b444fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
class Jsdoc3 < Formula
homepage "http://usejsdoc.org/"
head "https://github.com/jsdoc3/jsdoc.git"
url "https://github.com/jsdoc3/jsdoc/archive/v3.2.2.tar.gz"
sha256 "c101896d2cf08be636332a5eaaf38fe318ae7f639c37735abd1643b1b973254b"
devel do
url "https://github.com/jsdoc3/jsdoc/archive/3.3.0-beta3.tar.gz"
sha256 "de32d538a5eb1835fdafbb686cdab7ea80ad64b3651a0b85904766c2f5e94b44"
version "3.3.0-alpha13"
end
conflicts_with "jsdoc-toolkit", :because => "both install jsdoc"
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"jsdoc"
end
test do
(testpath/"test.js").write <<-EOS.undent
/**
* Represents a formula.
* @constructor
* @param {string} name - the name of the formula.
* @param {string} version - the version of the formula.
**/
function Formula(name, version) {}
EOS
system "#{bin}/jsdoc", "--verbose", "test.js"
end
end
|