package = "doccotest" version = "0.3-1" source = { url = "git://github.com/saucisson/lua-doccotest", tag = "0.3", } description = { summary = "Doctest for Lua commented with Docco", detailed = [[ The doccotest tool is a port of Python's doctest to the Lua programming language. It runs tests defined within code comments and compares their output with a reference one, given also within code comments. doccotest is designed to work on source code written in Lua, and commented in markdown. The documentation for the code can be generated using docco or locco, and embeds the tests and their expected results. ]], license = "MIT/X11", maintainer = "Alban Linard ", } dependencies = { "ansicolors >= 1", "lua >= 5.1", "luacov >= 0.7", "lualogging >= 1", "lua_cliargs >= 2", "i18n >= 0", "rings >= 1", "serpent >= 0", } build = { type = "builtin", modules = { ["doccotest" ] = "src/doccotest.lua", ["doccotest.en"] = "src/doccotest/en.lua", }, install = { bin = { ["doccotest"] = "bin/doccotest", }, }, }