rockspec_format = "3.0"
package = "elua"
version = "1.5.1-1"
source = {
   url = "git+https://forge.axfive.net/Taylor/elua.git",
   tag = "v1.5.1-1"
}
description = {
   summary = "A simple implementation of a Lua equivalent of ERB",
   detailed = [[
A simple implementation of a Lua equivalent of ERB.

Features:

* Supports Lua 5.1 through 5.5 as well as LuaJIT.
* All the features of ERB, plus some more.
* Customizable tags.
* Full type hinting.
* Very fast template rendering; templates are compiled into Lua bytecode and run directly. No string parsing is done on templates after the compile phase.
]],
   homepage = "https://forge.axfive.net/Taylor/elua",
   license = "MPL-2.0",
   issues_url = "https://forge.axfive.net/Taylor/elua/issues",
   labels = {
      "template"
   },
   maintainer = "Taylor Richberger <taylor@axfive.net>"
}
build = {
   type = "builtin",
   modules = {
      elua = "src/elua.lua"
   },
   install = {
      bin = {
         elua = "bin/elua"
      }
   }
}
