Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kazk committed Feb 15, 2023
1 parent e2016f6 commit b9ae057
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
4 changes: 3 additions & 1 deletion busted-codewars-dev-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ dependencies = {
}
build = {
type = "builtin",
modules = {}
modules = {
["busted.outputHandlers.codewars"] = "src/busted/outputHandlers/codewars.lua",
}
}

test = {
Expand Down
27 changes: 27 additions & 0 deletions rockspecs/busted-codewars-0.2.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
rockspec_format = "3.0"
package = "busted-codewars"
version = "0.2.0-1"
source = {
url = "git://github.com/codewars/busted-codewars",
tag = "v0.2.0"
}
description = {
summary = "Codewars output handler for Busted",
detailed = [[
Codewars output handler for Busted, a unit testing framework for Lua.
]],
homepage = "https://github.com/codewars/busted-codewars",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["busted.outputHandlers.codewars"] = "src/busted/outputHandlers/codewars.lua"
}
}
test = {
type = "busted"
}

0 comments on commit b9ae057

Please sign in to comment.