diff options
Diffstat (limited to 'rockspecs')
-rw-r--r-- | rockspecs/lua-resty-cookie-0.1.0-1.rockspec | 24 |
1 files changed, 24 insertions, 0 deletions
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" + } +} |