From 9a58f4e6e251eaf744932b3e166b8c254725cae8 Mon Sep 17 00:00:00 2001 From: eskerda Date: Fri, 11 Dec 2020 17:52:49 +0100 Subject: [PATCH] chore(*) add rockspec --- sandbox.lua-0.0.1-0.rockspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sandbox.lua-0.0.1-0.rockspec diff --git a/sandbox.lua-0.0.1-0.rockspec b/sandbox.lua-0.0.1-0.rockspec new file mode 100644 index 0000000..7fec198 --- /dev/null +++ b/sandbox.lua-0.0.1-0.rockspec @@ -0,0 +1,24 @@ +package = "sandbox.lua" + +version = "0.0.1-0" + +source = { + url = "git://github.com/kikito/sandbox.lua.git", + tag = "0.0.1" +} + +description = { + summary = "A pure-lua solution for running untrusted Lua code.", + homepage = "https://github.com/kikito/sandbox.lua", +} + +dependencies = { + "lua >= 5.1", +} + +build = { + type = "builtin", + modules = { + ["sandbox"] = "sandbox.lua", + } +}