mirror of
https://github.com/kikito/inspect.lua.git
synced 2024-12-15 14:34:21 +00:00
added rockspec
This commit is contained in:
parent
14a63ac985
commit
8c1e844845
22
inspect-1.2-1.rockspec
Normal file
22
inspect-1.2-1.rockspec
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
package = "inspect"
|
||||||
|
version = "1.2-1"
|
||||||
|
source = {
|
||||||
|
url = "https://github.com/downloads/kikito/inspect.lua/inspect-1.2.tar.gz"
|
||||||
|
}
|
||||||
|
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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user