Files
etlua/elua-dev-1.rockspec
leaf corcoran 463a339d84 update rockspec
2013-10-25 09:25:28 -07:00

30 lines
560 B
Lua

package = "elua"
version = "dev-1"
source = {
url = "git://github.com/leafo/elua.git"
}
description = {
summary = "Embedded templates for Lua",
detailed = [[
Allows you to render ERB style templates but with Lua. Supports <% %>, <%=
%> and <%- %> tags (with optional newline slurping) for embedding code.
]],
homepage = "https://github.com/leafo/elua",
maintainer = "Leaf Corcoran <leafot@gmail.com>",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["elua"] = "elua.lua",
},
}