Skip to content

Commit 9c8a68d

Browse files
committed
(chore) add 3.1.3 rockspec
1 parent 691eea1 commit 9c8a68d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

rockspecs/inspect-3.1.3-0.rockspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package = "inspect"
2+
version = "3.1.3-0"
3+
source = {
4+
url = "https://github.com/kikito/inspect.lua/archive/v3.1.3.tar.gz",
5+
dir = "inspect.lua-3.1.3"
6+
}
7+
description = {
8+
summary = "Lua table visualizer, ideal for debugging",
9+
detailed = [[
10+
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.
11+
]],
12+
homepage = "https://github.com/kikito/inspect.lua",
13+
license = "MIT <http://opensource.org/licenses/MIT>"
14+
}
15+
dependencies = {
16+
"lua >= 5.1"
17+
}
18+
build = {
19+
type = "builtin",
20+
modules = {
21+
inspect = "inspect.lua"
22+
}
23+
}

0 commit comments

Comments
 (0)