From 463a339d84658b4021e392c09fe730a8b43eea70 Mon Sep 17 00:00:00 2001 From: leaf corcoran Date: Fri, 25 Oct 2013 09:25:28 -0700 Subject: [PATCH] update rockspec --- elua-dev-1.rockspec | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/elua-dev-1.rockspec b/elua-dev-1.rockspec index a22c653..9ea309a 100644 --- a/elua-dev-1.rockspec +++ b/elua-dev-1.rockspec @@ -2,24 +2,28 @@ package = "elua" version = "dev-1" source = { - url = "git://github.com/leafo/elua.git" + url = "git://github.com/leafo/elua.git" } description = { - summary = "Embedded templates for Lua", - homepage = "https://github.com/leafo/elua", - maintainer = "Leaf Corcoran ", - license = "MIT" + 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 ", + license = "MIT" } dependencies = { - "lua >= 5.1", + "lua >= 5.1", } build = { - type = "builtin", - modules = { - ["elua"] = "elua.lua", - }, + type = "builtin", + modules = { + ["elua"] = "elua.lua", + }, }