All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lua.luarocks.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
package = "{{{packageName}}}"
version = "{{{packageVersion}}}"
source = {
	url = "https://github.com/{{gitUserId}}{{^gitUserId}}YOUR_GIT_USERNAME{{/gitUserId}}/{{gitRepoId}}{{^gitRepoId}}YOUR_GIT_REPO{{/gitRepoId}}.git"
}

description = {
	summary = "API client generated by OpenAPI Generator",
	detailed = [[
{{{appDescription}}}]],
	homepage = "https://openapi-generator.tech",
	license = "Unlicense",
	maintainer = "OpenAPI Generator contributors",
}

dependencies = {
	"lua >= 5.2",
	"http",
	"dkjson",
	"basexx"
}

build = {
	type = "builtin",
	modules = {
		{{#apiInfo}}
		{{#apis}}
		{{#operations}}
		{{#operation}}
		{{#-first}}
		["{{{packageName}}}.api.{{{classname}}}"] = "{{{packageName}}}/api/{{{classname}}}.lua";
		{{/-first}}
		{{/operation}}
		{{/operations}}
		{{/apis}}
		{{/apiInfo}}
		{{#models}}
		{{#model}}
		["{{{packageName}}}.model.{{{classname}}}"] = "{{{packageName}}}/model/{{{classname}}}.lua";
		{{/model}}
		{{/models}}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy