-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.rockspec
More file actions
28 lines (28 loc) · 840 Bytes
/
package.rockspec
File metadata and controls
28 lines (28 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package = "upcache"
source = {
url = "git://github.com/kapouer/upcache.git"
}
description = {
summary = "Scope and Tag cache protocols for application - proxy cache keys management.",
detailed = "This is the lua module to be used with proper nginx config and Node.js application module",
homepage = "https://github.com/kapouer/upcache",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lua-resty-jwt = 0.2.3",
"lua-resty-string >= 0.09",
"lua-messagepack >= 0.5.3"
}
build = {
type = "builtin",
modules = {
['upcache'] = "upcache.lua",
['upcache.lock'] = "upcache/lock.lua",
['upcache.tag'] = "upcache/tag.lua",
['upcache.map'] = "upcache/map.lua",
['upcache.vary'] = "upcache/vary.lua",
['upcache.common'] = "upcache/common.lua"
},
copy_directories = { "nginx" }
}