Skip to content

Commit 27da26a

Browse files
committed
Add. rockspecs for version 0.2.1
1 parent cbaa1cf commit 27da26a

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package = "LuaCov-coveralls"
2+
version = "0.2.1-1"
3+
source = {
4+
url = "git://github.com/moteus/luacov-coveralls",
5+
tag = "v0.2.1"
6+
}
7+
description = {
8+
summary = "LuaCov reporter for coveralls.io service",
9+
detailed = [[
10+
]],
11+
homepage = "http://github.com/moteus/luacov-coveralls",
12+
license = "MIT/X11"
13+
}
14+
dependencies = {
15+
"lua >= 5.1",
16+
-- "luajson",
17+
-- "lua-cjson",
18+
"dkjson",
19+
"luacov > 0.5",
20+
"luafilesystem",
21+
"lua-path",
22+
}
23+
build = {
24+
type = "builtin",
25+
copy_directories = {},
26+
modules = {
27+
['luacov.reporter.coveralls' ] = "src/luacov/reporter/coveralls.lua",
28+
['luacov.coveralls.CiInfo' ] = "src/luacov/coveralls/CiInfo.lua",
29+
['luacov.coveralls.CiRepo' ] = "src/luacov/coveralls/CiRepo.lua",
30+
['luacov.coveralls.utils' ] = "src/luacov/coveralls/utils.lua",
31+
['luacov.coveralls.repo.appveyor' ] = "src/luacov/coveralls/repo/appveyor.lua",
32+
['luacov.coveralls.repo.git' ] = "src/luacov/coveralls/repo/git.lua",
33+
},
34+
install = {
35+
bin = {
36+
["luacov-coveralls"] = "src/bin/luacov-coveralls",
37+
}
38+
},
39+
}

0 commit comments

Comments
 (0)