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.7/docfx.zip" sha256 "7399b5856ec1af3caa6810af94821e5eec8dbe7291cb9d1ca9d7be8b1d1827c4" 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