3.1.1 rockspec

This commit is contained in:
Enrique García Cota 2018-01-02 13:16:49 +01:00
parent 7fc6126e32
commit 78a91c40e5

View File

@ -0,0 +1,23 @@
package = "inspect"
version = "3.1.1-0"
source = {
url = "https://github.com/kikito/inspect.lua/archive/v3.1.1.tar.gz",
dir = "inspect.lua-3.1.1"
}
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 and handles recursive tables properly.
]],
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"
}
}