-
Notifications
You must be signed in to change notification settings - Fork 0
/
lullaby-0.1-1.rockspec
26 lines (26 loc) · 1019 Bytes
/
lullaby-0.1-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package = "lullaby"
version = "0.1-1"
source = {
-- url = "https://github.com/hugomg/lullaby/archive/v0.1.tar.gz",
-- dir = "lullaby-0.1",
url = "git://github.com/hugomg/lullaby",
tag = "v0.1",
}
description = {
summary = "A stream-based, Turing-complete template library for HTML.",
detailed = "Lullaby is a stream-based, Turing-complete template library for HTML that helps you write complex HTML documents using familiar Lua constructs instead of forcing you to learn a whole new templating language. Its a bit similar to Ruby's Markaby, Perl's Template::Declare and Haskell's Blaze.",
homepage = "https://github.com/hugomg/lullaby",
license = "MIT"
}
dependencies = {}
build = {
type = "builtin",
modules = {
lullaby = "lullaby.lua",
['lullaby.escape'] = "lullaby/escape.lua",
['lullaby.html_data'] = "lullaby/html_data.lua",
['lullaby.sax'] = "lullaby/sax.lua",
['lullaby.strict'] = "lullaby/strict.lua",
['lullaby.util'] = "lullaby/util.lua"
}
}