homebrew-core/Formula/docfx.rb

26 lines
657 B
Ruby
Raw Normal View History

2017-09-04 16:13:22 +00:00
class Docfx < Formula
desc "Tools for building and publishing API documentation for .NET projects"
homepage "https://dotnet.github.io/docfx/"
2017-11-10 13:10:41 +00:00
url "https://github.com/dotnet/docfx/releases/download/v2.27/docfx.zip"
sha256 "5905a59cd6e9a3d590162537702bf3a9f936582c7303cfb373ade9d45f810352"
2017-09-04 16:13:22 +00:00
bottle :unneeded
depends_on "mono"
def install
libexec.install Dir["*"]
2017-10-18 10:10:48 +00:00
(bin/"docfx").write <<~EOS
2017-09-04 16:13:22 +00:00
#!/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