summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorman Clarke <norman@njclarke.com>2009-11-06 12:59:32 -0300
committerNorman Clarke <norman@njclarke.com>2009-11-06 12:59:32 -0300
commitebe7c6d34095be7c4f32ee5cdcee1f401a438efa (patch)
tree468adb987d39a28258b5193d68e01e34d3e8b240
parentd77e7f6f6e55befe9689dff26f8dba8a78973a98 (diff)
downloadluacov-ebe7c6d34095be7c4f32ee5cdcee1f401a438efa.tar.gz
Added rockspec to repository.
-rw-r--r--luacov-0.2-1.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/luacov-0.2-1.rockspec b/luacov-0.2-1.rockspec
new file mode 100644
index 0000000..37eff94
--- /dev/null
+++ b/luacov-0.2-1.rockspec
@@ -0,0 +1,28 @@
+package = "LuaCov"
+version = "0.2-1"
+source = {
+ url = "http://luaforge.net/frs/download.php/4053/luacov-0.2.tar.gz"
+}
+description = {
+ summary = "Coverage analysis tool for Lua scripts",
+ detailed = [[
+ LuaCov is a simple coverage analysis tool for Lua scripts.
+ When a Lua script is run with the luacov module, it
+ generates a stats file. The luacov command-line script then
+ processes this file generating a report indicating which code
+ paths were not traversed, which is useful for verifying the
+ effectiveness of a test suite.
+ ]],
+ license = "MIT/X11",
+ homepage = "http://luacov.luaforge.net/"
+}
+dependencies = {
+ "lua >= 5.0",
+}
+build = {
+ type = "make",
+ variables = {
+ LUADIR = "$(LUADIR)",
+ BINDIR = "$(BINDIR)"
+ }
+}