summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-12-06 21:19:14 -0200
committerHisham Muhammad <hisham@gobolinux.org>2015-12-06 21:19:14 -0200
commitedcdf21b921a02190ab2d84b758e6df1a552fdb9 (patch)
treee100983463ac24481fa47751c678f0508bcea0d4
parent99002d8798ea35a697df5ee816de1f8ad87bd7c6 (diff)
downloadluacov-edcdf21b921a02190ab2d84b758e6df1a552fdb9.tar.gz
Prepare for version 0.9
-rw-r--r--doc/index.html10
-rw-r--r--rockspecs/luacov-0.9-1.rockspec39
-rw-r--r--rockspecs/luacov-scm-1.rockspec2
3 files changed, 50 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html
index 9f559bb..dac575f 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -179,6 +179,16 @@ just modify the first line of <tt>xavante_start.lua</tt> so it reads:
<h2><a name="history"></a>History</h2>
<dl>
+ <dt><strong>0.9</strong> [December 6, 2015]</dt>
+ <dd>
+ <ul>
+ <li>with_luacov() function for covering coroutines created via the C API.</li>
+ <li>fix priorities in modules list</li>
+ <li>improve coverage analysis/exclusions list</li>
+ <li>improve handling of multiline function declarations</li>
+ <li>LDoc documentation</li>
+ </ul>
+ </dd>
<dt><strong>0.8</strong> [September 30, 2015]</dt>
<dd>
<ul>
diff --git a/rockspecs/luacov-0.9-1.rockspec b/rockspecs/luacov-0.9-1.rockspec
new file mode 100644
index 0000000..746f1d2
--- /dev/null
+++ b/rockspecs/luacov-0.9-1.rockspec
@@ -0,0 +1,39 @@
+package = "LuaCov"
+version = "0.9-1"
+source = {
+ url = "git://github.com/keplerproject/luacov",
+ tag = "v0.9"
+}
+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",
+ }
+ }
+}
diff --git a/rockspecs/luacov-scm-1.rockspec b/rockspecs/luacov-scm-1.rockspec
index 6e3b1e8..e2ca97b 100644
--- a/rockspecs/luacov-scm-1.rockspec
+++ b/rockspecs/luacov-scm-1.rockspec
@@ -13,7 +13,7 @@ description = {
paths were not traversed, which is useful for verifying the
effectiveness of a test suite.
]],
- homepage = "http://luacov.luaforge.net/",
+ homepage = "http://keplerproject.github.com/luacov/",
license = "MIT/X11"
}
dependencies = {