autorest 0.16.0 (new formula)

Closes #8785.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Sebastian Mandrean 2017-01-12 19:20:55 +01:00 committed by Mike McQuaid
parent 4625e8b959
commit a1cddceebf
1 changed files with 28 additions and 0 deletions

28
Formula/autorest.rb Normal file
View File

@ -0,0 +1,28 @@
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