-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpetrodoc
More file actions
60 lines (43 loc) · 1.7 KB
/
petrodoc
File metadata and controls
60 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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:
<ul>
$do_versions[=[<li><a href="$url">$package-$version</a> - $comment ($date) </li> ]=]
</ul>
You can also install it using LuaRocks with
luarocks install diff
or:
luarocks --from=http://sputnik.freewisdom.org/rocks/earth install diff
]]
TOC = {
{ "Overview", "<p>"..detailed.."</p>" },
{ "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")) }
}
-------------------------------------------------------------------------------