Skip to content

Commit 6673970

Browse files
committed
Prepare release and bump version numbers to 0.1.1
1 parent 2cde095 commit 6673970

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package = "LuaCov-coveralls"
2+
version = "0.1.1-1"
3+
source = {
4+
url = "git://github.com/moteus/luacov-coveralls",
5+
tag = "v0.1.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+
"luacov > 0.5",
19+
"luafilesystem",
20+
"lua-path",
21+
}
22+
build = {
23+
type = "builtin",
24+
copy_directories = {},
25+
modules = {
26+
['luacov.reporter.coveralls'] = "src/luacov/reporter/coveralls.lua",
27+
['luacov.coveralls.GitRepo' ] = "src/luacov/coveralls/GitRepo.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+
},
32+
install = {
33+
bin = {
34+
["luacov-coveralls"] = "src/bin/luacov-coveralls",
35+
}
36+
},
37+
}

0 commit comments

Comments
 (0)