summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormpeterv <mpeterval@gmail.com>2015-12-07 19:25:05 +0300
committermpeterv <mpeterval@gmail.com>2015-12-07 19:25:05 +0300
commit5339f580f43b396d6192f3be0c6c33df82f3691f (patch)
tree8669b8d0e04a5c70294c9c75050b817d93c0de7e
parentc2ab9b3b4714121e6f5e01cf561cb949bc8812cc (diff)
downloadluacov-5339f580f43b396d6192f3be0c6c33df82f3691f.tar.gz
Prepare for version 0.9.1
-rw-r--r--doc/index.html6
-rw-r--r--rockspecs/luacov-0.9.1-1.rockspec39
2 files changed, 45 insertions, 0 deletions
diff --git a/doc/index.html b/doc/index.html
index dac575f..ca089f3 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -179,6 +179,12 @@ 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.1</strong> [December 7, 2015]</dt>
+ <dd>
+ <ul>
+ <li>Fixed error when running LuaCov using Lua 5.1.</li>
+ </ul>
+ </dd>
<dt><strong>0.9</strong> [December 6, 2015]</dt>
<dd>
<ul>
diff --git a/rockspecs/luacov-0.9.1-1.rockspec b/rockspecs/luacov-0.9.1-1.rockspec
new file mode 100644
index 0000000..ae25544
--- /dev/null
+++ b/rockspecs/luacov-0.9.1-1.rockspec
@@ -0,0 +1,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",
+ }
+ }
+}