Skip to content

Commit c537e97

Browse files
committed
libs added, mainly lunarmodules from https://github.com/lunarmodules
1 parent a3201bf commit c537e97

28 files changed

Lines changed: 454 additions & 35 deletions

libraries/data.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
[
2+
"data/busted.json",
3+
"data/cgilua.json",
4+
"data/copas.json",
25
"data/cron.json",
6+
"data/expadom.json",
7+
"data/ldoc.json",
8+
"data/luacheck.json",
9+
"data/luacompat53.json",
10+
"data/luacov.json",
311
"data/luadate.json",
12+
"data/luaexpat.json",
413
"data/luafilesystem.json",
14+
"data/lualace.json",
15+
"data/lualogging.json",
516
"data/luapath.json",
617
"data/luaposix.json",
18+
"data/luasocket.json",
19+
"data/luasql.json",
20+
"data/luassert.json",
21+
"data/luasyslog.json",
722
"data/luatz.json",
8-
"data/lunix.json"
23+
"data/lunix.json",
24+
"data/md5.json",
25+
"data/moonsand.json",
26+
"data/penlight.json",
27+
"data/say.json"
928
]
29+

libraries/data/_template.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name" : "",
33
"description" : "",
4-
"category" : "",
54
"link" : "",
5+
"tags" : {},
66

77
"status" :
88
{
@@ -13,9 +13,9 @@
1313

1414
"lua" :
1515
{
16-
"51" : null,
17-
"52" : null,
18-
"53" : null,
19-
"54" : null
16+
"51" : false,
17+
"52" : false,
18+
"53" : false,
19+
"54" : false
2020
}
2121
}

libraries/data/busted.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "busted",
3+
"description" : "Elegant Lua unit testing",
4+
"link" : "https://github.com/lunarmodules/busted",
5+
"tags" : {"unit testing","unit tests"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : true,
19+
"54" : true
20+
}
21+
}

libraries/data/cgilua.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "CGILua",
3+
"description" : "CGILua is a tool for creating dynamic HTML pages and manipulating input data from Web forms",
4+
"link" : "https://github.com/lunarmodules/cgilua",
5+
"tags" : {"hmtl","cgi"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : true,
19+
"54" : true
20+
}
21+
}

libraries/data/copas.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "copas",
3+
"description" : "Copas is a dispatcher based on coroutines that can be used by TCP/IP servers",
4+
"link" : "https://github.com/lunarmodules/copas",
5+
"tags" : {"dispatcher","tcp","udp","network"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : false,
18+
"53" : false,
19+
"54" : false
20+
}
21+
}

libraries/data/cron.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"category" : "time",
32
"name" : "cron",
4-
"link" : "https://github.com/kikito/cron.lua",
53
"description" : "Time-related functions for Lua, inspired by JavaScript's setTimeout and setInterval.",
4+
"link" : "https://github.com/kikito/cron.lua",
5+
"tags" : {"cron","time"},
66

77
"status" :
88
{
9-
"active" : false,
10-
"help" : true,
11-
"maintainer" : true
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
1212
},
1313

1414
"lua" :
1515
{
16-
"51" : null,
17-
"52" : false,
18-
"53" : true,
19-
"54" : true
16+
"51" : true,
17+
"52" : true,
18+
"53" : false,
19+
"54" : false
2020
}
2121
}

libraries/data/expadom.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "expadom",
3+
"description" : "An XML DOM Level 2 Core implementation in Lua, based on the (Lua)Expat parser",
4+
"link" : "https://github.com/lunarmodules/expadom",
5+
"tags" : {"xml","dom"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : true,
19+
"54" : true
20+
}
21+
}

libraries/data/ldoc.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "LDoc",
3+
"description" : "LDoc is a LuaDoc-compatible documentation generator",
4+
"link" : "https://github.com/lunarmodules/LDoc",
5+
"tags" : {"documentation","generator"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : true,
19+
"54" : true
20+
}
21+
}

libraries/data/luacheck.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "Luacheck",
3+
"description" : "A tool for linting and static analysis of Lua code",
4+
"link" : "https://github.com/lunarmodules/luacheck",
5+
"tags" : {"linter","linting","static analysis","code checker"},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : true,
19+
"54" : true
20+
}
21+
}

libraries/data/luacompat53.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "lua-compat-5.3",
3+
"description" : "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1",
4+
"link" : "https://github.com/lunarmodules/lua-compat-5.3",
5+
"tags" : {},
6+
7+
"status" :
8+
{
9+
"active" : true,
10+
"help" : false,
11+
"maintainer" : false
12+
},
13+
14+
"lua" :
15+
{
16+
"51" : true,
17+
"52" : true,
18+
"53" : false,
19+
"54" : false
20+
}
21+
}

0 commit comments

Comments
 (0)