26 lines
657 B
Ruby
26 lines
657 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.55/docfx.zip"
|
|
sha256 "900cfe0d7ecee14b312e1faaa7a7663bc1868d5086bd4c88b5c8be8d9df5d34d"
|
|
|
|
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
|