From 8171c2edeec0dbd76d5f6a5f1610d41e4e0fb887 Mon Sep 17 00:00:00 2001 From: Jiale Zhi Date: Sun, 9 Aug 2015 16:47:46 -0700 Subject: Add rockspec file --- rockspecs/lua-resty-cookie-0.1.0-1.rockspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 rockspecs/lua-resty-cookie-0.1.0-1.rockspec diff --git a/rockspecs/lua-resty-cookie-0.1.0-1.rockspec b/rockspecs/lua-resty-cookie-0.1.0-1.rockspec new file mode 100644 index 0000000..61c0911 --- /dev/null +++ b/rockspecs/lua-resty-cookie-0.1.0-1.rockspec @@ -0,0 +1,24 @@ +package = "lua-resty-cookie" +version = "0.1.0-1" + +source = { + url = "git://github.com/cloudflare/lua-resty-cookie.git", + tag = "v0.1.0", +} + +description = { + summary = "Lua library for HTTP cookie manipulations for OpenResty/ngx_lua", + homepage = "https://github.com/cloudflare/lua-resty-cookie", + license = "BSD", +} + +dependencies = { + "lua >= 5.1", -- lua-nginx-module needed +} + +build = { + type = "builtin", + modules = { + ["resty.cookie"] = "lib/resty/cookie.lua" + } +} -- cgit v1.2.3-54-g00ecf