diff --git a/rockspec/lua-resty-t1k-1.1.6-0.rockspec b/rockspec/lua-resty-t1k-1.1.6-0.rockspec new file mode 100644 index 0000000..eaed3b2 --- /dev/null +++ b/rockspec/lua-resty-t1k-1.1.6-0.rockspec @@ -0,0 +1,32 @@ +package = "lua-resty-t1k" +version = "1.1.6-0" +source = { + url = "git://github.com/chaitin/lua-resty-t1k", + tag = "v1.1.6" +} + +description = { + summary = "Lua implementation of the T1K protocol for Chaitin SafeLine Web Application Firewall", + detailed = [[ + Check https://waf-ce.chaitin.cn/ for more information about Chaitin SafeLine Web Application Firewall. + ]], + homepage = "https://github.com/chaitin/lua-resty-t1k", + license = "Apache License 2.0", + maintainer = "Xudong Wang " +} + +build = { + type = "builtin", + modules = { + ["resty.t1k"] = "lib/resty/t1k.lua", + ["resty.t1k.buffer"] = "lib/resty/t1k/buffer.lua", + ["resty.t1k.constants"] = "lib/resty/t1k/constants.lua", + ["resty.t1k.file"] = "lib/resty/t1k/file.lua", + ["resty.t1k.filter"] = "lib/resty/t1k/filter.lua", + ["resty.t1k.handler"] = "lib/resty/t1k/handler.lua", + ["resty.t1k.log"] = "lib/resty/t1k/log.lua", + ["resty.t1k.request"] = "lib/resty/t1k/request.lua", + ["resty.t1k.utils"] = "lib/resty/t1k/utils.lua", + ["resty.t1k.uuid"] = "lib/resty/t1k/uuid.lua", + }, +}