rename project to etlua

This commit is contained in:
leaf corcoran
2013-10-26 10:08:13 -07:00
parent 0a683fb35d
commit a5dc45b88b
7 changed files with 47 additions and 17 deletions

29
etlua-dev-1.rockspec Normal file
View File

@@ -0,0 +1,29 @@
package = "etlua"
version = "dev-1"
source = {
url = "git://github.com/leafo/etlua.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/etlua",
maintainer = "Leaf Corcoran <leafot@gmail.com>",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["etlua"] = "etlua.lua",
},
}