summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec')
-rw-r--r--Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec23
1 files changed, 23 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec b/Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec
new file mode 100644
index 0000000..286bbd5
--- /dev/null
+++ b/Data/BuiltIn/Libraries/inspect/rockspecs/inspect-2.0-1.rockspec
@@ -0,0 +1,23 @@
+package = "inspect"
+version = "2.0-1"
+source = {
+ url = "https://github.com/kikito/inspect.lua/archive/v2.0.0.tar.gz",
+ dir = "inspect.lua-2.0.0"
+}
+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"
+ }
+}