chore - publish rockspec and add luarocks instructions

This commit is contained in:
Enrique García Cota
2021-01-07 11:38:37 +01:00
parent a8b9c31ad5
commit e28e0bef65
2 changed files with 7 additions and 3 deletions

24
sandbox-1.0.0-0.rockspec Normal file
View File

@@ -0,0 +1,24 @@
package = "sandbox"
version = "1.0.0-0"
source = {
url = "git://github.com/kikito/sandbox.lua.git",
tag = "v1.0.0"
}
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",
}
}