summaryrefslogtreecommitdiff
path: root/rockspecs/luacov-0.9.1-1.rockspec
blob: ae255448d6a0cd819dbe6e7e1caf66c47bd80669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package = "LuaCov"
version = "0.9.1-1"
source = {
   url = "git://github.com/keplerproject/luacov",
   tag = "v0.9.1"
}
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",
      }
   }
}