From 0d468cb70b04aba4936ec5b4e05a417df21377c8 Mon Sep 17 00:00:00 2001 From: kikito Date: Sat, 28 Nov 2015 14:11:41 +0100 Subject: [PATCH] adds new rockspec file --- rockspecs/inspect-3.0-3.rockspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 rockspecs/inspect-3.0-3.rockspec diff --git a/rockspecs/inspect-3.0-3.rockspec b/rockspecs/inspect-3.0-3.rockspec new file mode 100644 index 0000000..9e07b01 --- /dev/null +++ b/rockspecs/inspect-3.0-3.rockspec @@ -0,0 +1,23 @@ +package = "inspect" +version = "3.0-3" +source = { + url = "https://github.com/kikito/inspect.lua/archive/v3.0.2.tar.gz", + dir = "inspect.lua-3.0.2" +} +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 " +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + inspect = "inspect.lua" + } +}