-
Notifications
You must be signed in to change notification settings - Fork 0
/
restia-dev-2.rockspec
61 lines (61 loc) · 1.88 KB
/
restia-dev-2.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
rockspec_format = "3.0"
package = "restia"
version = "dev-2"
source = {
url = "git+https://github.com/DarkWiiPlayer/restia.git";
}
description = {
summary = "Auxiliary library for dynamic web content in openresty";
homepage = "https://darkwiiplayer.github.io/restia/";
license = "Unlicense";
labels = {
"html";
"openresty";
}
}
dependencies = {
"arrr ~> 2.2";
"cosmo";
"glass ~> 1.3";
"lua ~> 5";
"lua-cjson ~> 2.1";
"lua-resty-cookie";
"luafilesystem ~> 1.8";
"luaossl";
"lunamark ~> 0.5";
"lyaml ~> 6.2";
"multipart ~> 0.5";
"protomixin ~> 1";
"scaffold ~> 1.1";
"xhmoon";
}
build = {
type = "builtin",
modules = {
['restia'] = 'restia/init.lua';
['restia.accessors'] = 'restia/accessors.lua';
['restia.bin'] = 'restia/bin/init.lua';
['restia.bin.commands'] = 'restia/bin/commands.lua';
['restia.bin.manpage'] = 'restia/bin/manpage.lua';
['restia.colors'] = 'restia/colors.lua';
['restia.contributors'] = 'contributors.lua';
['restia.controller'] = 'restia/controller.lua';
['restia.handler'] = 'restia/handler.lua';
['restia.logbuffer'] = 'restia/logbuffer.lua';
['restia.markdown'] = 'restia/markdown.lua';
['restia.negotiator'] = 'restia/negotiator.lua';
['restia.request'] = 'restia/request.lua';
['restia.scaffold.app'] = 'restia/scaffold/app.lua';
['restia.scaffold.init'] = 'restia/scaffold/init.lua';
['restia.scaffold.blog'] = 'restia/scaffold/blog.lua';
['restia.scaffold.static'] = 'restia/scaffold/static.lua';
['restia.secret'] = 'restia/secret.lua';
['restia.template'] = 'restia/template.lua';
['restia.utils'] = 'restia/utils.lua';
};
install = {
bin = {
restia = 'bin/restia.lua';
};
};
}