homebrew-core/Formula/docfx.rb
Igor Kapkov b90caad5af
docfx 2.40.6
Closes #35284.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-12-21 02:20:02 +08:00

25 lines
659 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.40.6/docfx.zip"
sha256 "2d11aaad61c99c688c286ab42fd9af498380895150cbe91e8ab11a6cbf411756"
bottle :unneeded
depends_on "mono"
def install
libexec.install Dir["*"]
(bin/"docfx").write <<~EOS
#!/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