Skip to content

Commit b9ae057

Browse files
committed
v0.2.0
1 parent e2016f6 commit b9ae057

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

busted-codewars-dev-1.rockspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ dependencies = {
1717
}
1818
build = {
1919
type = "builtin",
20-
modules = {}
20+
modules = {
21+
["busted.outputHandlers.codewars"] = "src/busted/outputHandlers/codewars.lua",
22+
}
2123
}
2224

2325
test = {
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
rockspec_format = "3.0"
2+
package = "busted-codewars"
3+
version = "0.2.0-1"
4+
source = {
5+
url = "git://github.com/codewars/busted-codewars",
6+
tag = "v0.2.0"
7+
}
8+
description = {
9+
summary = "Codewars output handler for Busted",
10+
detailed = [[
11+
Codewars output handler for Busted, a unit testing framework for Lua.
12+
]],
13+
homepage = "https://github.com/codewars/busted-codewars",
14+
license = "MIT"
15+
}
16+
dependencies = {
17+
"lua >= 5.1"
18+
}
19+
build = {
20+
type = "builtin",
21+
modules = {
22+
["busted.outputHandlers.codewars"] = "src/busted/outputHandlers/codewars.lua"
23+
}
24+
}
25+
test = {
26+
type = "busted"
27+
}

0 commit comments

Comments
 (0)