29 lines
889 B
Ruby
29 lines
889 B
Ruby
|
class Autorest < Formula
|
||
|
desc "Swagger (OpenAPI) Specification code generator"
|
||
|
homepage "https://github.com/Azure/autorest"
|
||
|
url "https://api.nuget.org/packages/autorest.0.17.3.nupkg"
|
||
|
sha256 "b3f5b67ae1a8aa4f0fd6cf1e51df27ea1867f0c845dbb13c1c608b148bd86296"
|
||
|
|
||
|
depends_on "mono"
|
||
|
|
||
|
resource "swagger" do
|
||
|
url "https://raw.githubusercontent.com/Azure/autorest/764d308b3b75ba83cb716708f5cef98e63dde1f7/Samples/petstore/petstore.json"
|
||
|
sha256 "8de4043eff83c71d49f80726154ca3935548bd974d915a6a9b6aa86da8b1c87c"
|
||
|
end
|
||
|
|
||
|
def install
|
||
|
libexec.install Dir["tools/*"]
|
||
|
(bin/"autorest").write <<-EOS.undent
|
||
|
#!/bin/bash
|
||
|
mono #{libexec}/AutoRest.exe "$@"
|
||
|
EOS
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
resource("swagger").stage do
|
||
|
assert_match "Finished generating CSharp code for petstore.json.",
|
||
|
shell_output("#{bin}/autorest -n test -i petstore.json")
|
||
|
end
|
||
|
end
|
||
|
end
|