diff options
author | chai <chaifix@163.com> | 2021-10-20 12:31:42 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-20 12:31:42 +0800 |
commit | 943411c9006345b07557e76ff360c388ee8366c1 (patch) | |
tree | f9d3e8525acd02412d1d556b6778fb373a806f33 /Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec | |
parent | dcf8210b43077ed6a12d73e0d7d3d7edcbbe3e55 (diff) |
+some lua libs
Diffstat (limited to 'Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec')
-rw-r--r-- | Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec b/Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec new file mode 100644 index 0000000..b22ec9c --- /dev/null +++ b/Resources/DefaultContent/Libraries/inspect/rockspecs/inspect-3.0-2.rockspec @@ -0,0 +1,23 @@ +package = "inspect" +version = "3.0-2" +source = { + url = "https://github.com/kikito/inspect.lua/archive/v3.0.1.tar.gz", + dir = "inspect.lua-3.0.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" + } +} |