-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluacov-multiple-scm-1.rockspec
34 lines (34 loc) · 1.16 KB
/
luacov-multiple-scm-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
27
28
29
30
31
32
33
34
package = "luacov-multiple"
version = "scm-1"
source = {
url = "git://github.com/to-kr/luacov-multiple",
}
description = {
summary = "Multiple LuaCov report generators",
detailed = [[
LuaCov is a simple coverage analysis tool for Lua scripts.
LuaCov report generators contains reports another reports
(cobertura, html) with possibility to generate multiple
reports at once.
]],
homepage = "https://github.com/to-kr/luacov-multiple",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
"luacov >= 0.12",
"luafilesystem",
"lustache"
}
build = {
type = "builtin",
modules = {
["luacov.multiple.templatecss"] = "src/luacov/multiple/templatecss.lua",
["luacov.multiple.templatefile"] = "src/luacov/multiple/templatefile.lua",
["luacov.multiple.templatepackage"] = "src/luacov/multiple/templatepackage.lua",
["luacov.multiple.tools"] = "src/luacov/multiple/tools.lua",
["luacov.reporter.multiple"] = "src/luacov/reporter/multiple.lua",
["luacov.reporter.multiple.cobertura"] = "src/luacov/reporter/multiple/cobertura.lua",
["luacov.reporter.multiple.html"] = "src/luacov/reporter/multiple/html.lua"
}
}