homebrew-core/Formula/docfx.rb
2017-10-08 22:11:54 -07:00

25 lines
664 B
Ruby

class Docfx < Formula
desc "Tools for building and publishing API documentation for .NET projects"
homepage "https://dotnet.github.io/docfx/"
url "https://github.com/dotnet/docfx/releases/download/v2.25/docfx.zip"
sha256 "6837f551a6298b32c0bb107b1b661af4b1150759d0352af1ecb62c686e98c0a0"
bottle :unneeded
depends_on "mono"
def install
libexec.install Dir["*"]
(bin/"docfx").write <<-EOS.undent
#!/bin/bash
mono #{libexec}/docfx.exe "$@"
EOS
end
test do
system bin/"docfx", "init", "-q"
assert_predicate testpath/"docfx_project/docfx.json", :exist?,
"Failed to generate project"
end
end