From edcdf21b921a02190ab2d84b758e6df1a552fdb9 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sun, 6 Dec 2015 21:19:14 -0200 Subject: Prepare for version 0.9 --- doc/index.html | 10 ++++++++++ rockspecs/luacov-0.9-1.rockspec | 39 +++++++++++++++++++++++++++++++++++++++ rockspecs/luacov-scm-1.rockspec | 2 +- 3 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 rockspecs/luacov-0.9-1.rockspec 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 xavante_start.lua so it reads:

History

+
0.9 [December 6, 2015]
+
+
    +
  • with_luacov() function for covering coroutines created via the C API.
  • +
  • fix priorities in modules list
  • +
  • improve coverage analysis/exclusions list
  • +
  • improve handling of multiline function declarations
  • +
  • LDoc documentation
  • +
+
0.8 [September 30, 2015]
    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 = { -- cgit v1.2.1