package = 'Diff' versions = { {'8.06.15', 'June 15, 2008', 'the initial release'}, } summary = 'Diff functions' maintainer = 'Yuri Takhteyev (yuri@freewisdom.org)' detailed = [[ This module provides a small collection of functions for diffing text. ]] license = 'MIT/X11' homepage = 'http://sputnik.freewisdom.org/lib/diff/' favicon = 'http://media.freewisdom.org/etc/sputnik-icon.png' download = 'http://sputnik.freewisdom.org/files/diff-$version.tar.gz' --download = "/tmp/versium-$version.tar.gz" push = "scp %s yuri@web10.webfaction.com:~/webapps/static/files/" --push = "cp %s /tmp/" logo = 'diff.png' keywords = 'lua, diff' rss = homepage.."releases.rss" -------------------------------------------------------------------------------- dependencies = [[ ]] Installation = [[ The Diff library consists of a single file (diff.lua), plus a test script (tests/basic.lua). Just put the file somewhere in your Lua path. Here is a list of recent releases: You can also install it using LuaRocks with luarocks install diff or: luarocks --from=http://sputnik.freewisdom.org/rocks/earth install diff ]] TOC = { { "Overview", "

"..detailed.."

" }, { "Installation", markdown(Installation) }, { "Using Diff", markdown(include("doc/howto.md")) }, { "Contact", "Please contact Yuri Takhteyev (yuri -at- freewisdom.org) with any questions."}, { "LuaDoc", make_luadoc{"diff.lua"} }, { "License", markdown(include("LICENSE.txt")) } } -------------------------------------------------------------------------------