Skip to content

Commit

Permalink
Add rockspec for 0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
siffiejoe committed Jun 3, 2015
1 parent 2c25212 commit 79e4217
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions rockspecs/testy-0.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "testy"
version = "0.2-1"
source = {
url = "https://github.com/siffiejoe/lua-testy/archive/v0.2.zip",
dir = "lua-testy-0.2"
}
description = {
summary = "Easy unit testing for Lua modules.",
detailed = [[
A small Lua scripts that extracts local test functions from
Lua modules (or separate test scripts), runs those tests, and
prints nice statistics about failed/passed tests.
]],
homepage = "https://github.com/siffiejoe/lua-testy/",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "none",
install = {
bin = {
["testy.lua"] = "src/testy.lua"
}
}
}

0 comments on commit 79e4217

Please sign in to comment.