forked from lunarmodules/luacov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luacov-scm-1.rockspec
41 lines (41 loc) · 1.26 KB
/
luacov-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
35
36
37
38
39
40
41
package = "luacov"
version = "scm-1"
source = {
url = "git+https://github.com/keplerproject/luacov.git",
}
description = {
summary = "Coverage analysis tool for Lua scripts",
detailed = [[
LuaCov is a simple coverage analysis tool for Lua scripts.
When a Lua script is run with the luacov module, it
generates a stats file. The luacov command-line script then
processes this file generating a report indicating which code
paths were not traversed, which is useful for verifying the
effectiveness of a test suite.
]],
homepage = "https://keplerproject.github.io/luacov/",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
luacov = "src/luacov.lua",
["luacov.defaults"] = "src/luacov/defaults.lua",
["luacov.hook"] = "src/luacov/hook.lua",
["luacov.linescanner"] = "src/luacov/linescanner.lua",
["luacov.reporter"] = "src/luacov/reporter.lua",
["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
["luacov.runner"] = "src/luacov/runner.lua",
["luacov.stats"] = "src/luacov/stats.lua",
["luacov.tick"] = "src/luacov/tick.lua",
["luacov.util"] = "src/luacov/util.lua"
},
install = {
bin = {
luacov = "src/bin/luacov"
}
}
}