-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluacov-coveralls-scm-0.rockspec
39 lines (39 loc) · 1.09 KB
/
luacov-coveralls-scm-0.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
package = "LuaCov-coveralls"
version = "scm-0"
source = {
url = "git://github.com/moteus/luacov-coveralls",
tag = "master"
}
description = {
summary = "LuaCov reporter for coveralls.io service",
detailed = [[
]],
homepage = "http://github.com/moteus/luacov-coveralls",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
-- "luajson",
-- "lua-cjson",
"dkjson",
"luacov > 0.5",
"luafilesystem",
"lua-path",
}
build = {
type = "builtin",
copy_directories = {},
modules = {
['luacov.reporter.coveralls' ] = "src/luacov/reporter/coveralls.lua",
['luacov.coveralls.CiInfo' ] = "src/luacov/coveralls/CiInfo.lua",
['luacov.coveralls.CiRepo' ] = "src/luacov/coveralls/CiRepo.lua",
['luacov.coveralls.utils' ] = "src/luacov/coveralls/utils.lua",
['luacov.coveralls.repo.appveyor' ] = "src/luacov/coveralls/repo/appveyor.lua",
['luacov.coveralls.repo.git' ] = "src/luacov/coveralls/repo/git.lua",
},
install = {
bin = {
["luacov-coveralls"] = "src/bin/luacov-coveralls",
}
},
}