homebrew-core/Formula/docfx.rb
2019-02-27 20:33:25 +01:00

25 lines
660 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.11/docfx.zip"
sha256 "abdbefbf9632fcffc4b458a06552fb43a9ca72bccbb6fca42fb2b0dccc7fe658"
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