aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiale Zhi <vipcalio@gmail.com>2015-08-09 16:47:46 -0700
committerJiale Zhi <vipcalio@gmail.com>2015-08-09 16:48:55 -0700
commit8171c2edeec0dbd76d5f6a5f1610d41e4e0fb887 (patch)
tree9701a819d35fd702875379e361d2681eb98315cf
parentbbd0df6bca3cac22138225d6a36243ce767d5881 (diff)
downloadlua-resty-cookie-8171c2edeec0dbd76d5f6a5f1610d41e4e0fb887.tar.gz
lua-resty-cookie-8171c2edeec0dbd76d5f6a5f1610d41e4e0fb887.tar.bz2
lua-resty-cookie-8171c2edeec0dbd76d5f6a5f1610d41e4e0fb887.zip
Add rockspec file
-rw-r--r--rockspecs/lua-resty-cookie-0.1.0-1.rockspec24
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"
+ }
+}