summaryrefslogtreecommitdiff
path: root/rockspecs/luacov-0.6-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'rockspecs/luacov-0.6-1.rockspec')
-rw-r--r--rockspecs/luacov-0.6-1.rockspec39
1 files changed, 0 insertions, 39 deletions
diff --git a/rockspecs/luacov-0.6-1.rockspec b/rockspecs/luacov-0.6-1.rockspec
deleted file mode 100644
index c6f8bd1..0000000
--- a/rockspecs/luacov-0.6-1.rockspec
+++ /dev/null
@@ -1,39 +0,0 @@
-package = "LuaCov"
-version = "0.6-1"
-source = {
- url = "git://github.com/keplerproject/luacov",
- tag = "v0.6"
-}
-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.
- ]],
- homepage = "http://keplerproject.github.com/luacov/",
- license = "MIT/X11"
-}
-dependencies = {
- "lua >= 5.1"
-}
-build = {
- type = "builtin",
- modules = {
- ["luacov.defaults"] = "src/luacov/defaults.lua",
- ["luacov"] = "src/luacov.lua",
- ["luacov.reporter"] = "src/luacov/reporter.lua",
- ["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
- ["luacov.runner"] = "src/luacov/runner.lua",
- ["luacov.stats"] = "src/luacov/stats.lua",
- ["luacov.tick"] = "src/luacov/tick.lua",
- },
- install = {
- bin = {
- ["luacov"] = "src/bin/luacov",
- }
- }
-}