2012-11-03 19:23:43 +00:00
|
|
|
package = "inspect"
|
2012-11-05 22:37:53 +00:00
|
|
|
version = "1.2-2"
|
2012-11-03 19:23:43 +00:00
|
|
|
source = {
|
2012-11-05 22:37:53 +00:00
|
|
|
url = "https://github.com/kikito/inspect.lua/archive/v1.2.0.tar.gz",
|
|
|
|
dir = "inspect.lua-1.2.0"
|
2012-11-03 19:23:43 +00:00
|
|
|
}
|
|
|
|
description = {
|
|
|
|
summary = "Lua table visualizer, ideal for debugging",
|
|
|
|
detailed = [[
|
|
|
|
inspect will print out your lua tables nicely so you can debug your programs quickly. It sorts keys by type and name, handles data recursion
|
|
|
|
]],
|
|
|
|
homepage = "https://github.com/kikito/inspect.lua",
|
|
|
|
license = "MIT <http://opensource.org/licenses/MIT>"
|
|
|
|
}
|
|
|
|
dependencies = {
|
|
|
|
"lua >= 5.1"
|
|
|
|
}
|
|
|
|
build = {
|
|
|
|
type = "builtin",
|
|
|
|
modules = {
|
|
|
|
inspect = "inspect.lua"
|
|
|
|
}
|
|
|
|
}
|