From 444a3d9ce3ed0634101bc5a9b0a40d8cf87ca49d Mon Sep 17 00:00:00 2001 From: steve donovan Date: Sat, 17 Dec 2011 17:08:00 +0200 Subject: [PATCH 1/2] directory clean out --- tests/annot/annot.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/annot/annot.lua diff --git a/tests/annot/annot.lua b/tests/annot/annot.lua new file mode 100644 index 0000000..7ebc278 --- /dev/null +++ b/tests/annot/annot.lua @@ -0,0 +1,21 @@ +---------------- +-- Testing annotations +-- @module annot + +--- first fun. +function first() + if boo then + local bar = do_something() + if bar then + --- @fixme otherwise do what? + end + end +end + +--- second try. +function second() + --- @todo also handle foo case + if bar then + + end +end From 5422edcffebb11bd1f097d83e8689028200d5dec Mon Sep 17 00:00:00 2001 From: steve donovan Date: Wed, 21 Dec 2011 15:04:16 +0200 Subject: [PATCH 2/2] 1.1.0 beta push --- ldoc.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ldoc.lua b/ldoc.lua index ec3039e..3f75139 100644 --- a/ldoc.lua +++ b/ldoc.lua @@ -6,6 +6,10 @@ -- -- C/C++ support for Lua extensions is provided. -- +-- Available from LuaRocks as 'ldoc' and as a [Zip file](http://stevedonovan.github.com/files/ldoc-1.1.0.zip) +-- +-- [Github Page](https://github.com/stevedonovan/ldoc) +-- -- @author Steve Donovan -- @copyright 2011 -- @license MIT/X11