-
Notifications
You must be signed in to change notification settings - Fork 3
/
lua-resty-moesif-1.3.12-1.rockspec
47 lines (42 loc) · 2 KB
/
lua-resty-moesif-1.3.12-1.rockspec
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package = "lua-resty-moesif" -- TODO: rename, must match the info in the filename of this rockspec!
-- as a convention; stick to the prefix: `kong-plugin-`
version = "1.3.12-1" -- TODO: renumber, must match the info in the filename of this rockspec!
-- The version '1.3.12' is the source code version, the trailing '1' is the version of this rockspec.
-- whenever the source version changes, the rockspec should be reset to 1. The rockspec version is only
-- updated (incremented) when this file changes, but the source remains the same.
-- TODO: This is the name to set in the Kong configuration `custom_plugins` setting.
-- Here we extract it from the package name.
local pluginName = package:match("^lua%-resty%-(.+)$") -- "moesif"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Moesif/lua-resty-moesif",
tag = "1.3.12"
}
description = {
summary = "Moesif plugin for Openresty",
homepage = "http://moesif.com",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"luasocket >= 3.0rc1",
"lua-cjson >= 2.1.0.6",
"luaxml >= 101012",
}
build = {
type = "builtin",
modules = {
["lua.resty.moesif.send_event"] = "lua/resty/moesif/send_event.lua",
["lua.resty.moesif.send_event_3Scale"] = "lua/resty/moesif/send_event_3Scale.lua",
["lua.resty.moesif.log"] = "lua/resty/moesif/log.lua",
["lua.resty.moesif.moesif_ser"] = "lua/resty/moesif/moesif_ser.lua",
["lua.resty.moesif.helpers"] = "lua/resty/moesif/helpers.lua",
["lua.resty.moesif.connection"] = "lua/resty/moesif/connection.lua",
["lua.resty.moesif.lib_deflate"] = "lua/resty/moesif/lib_deflate.lua",
["lua.resty.moesif.client_ip"] = "lua/resty/moesif/client_ip.lua",
["lua.resty.moesif.zzlib"] = "lua/resty/moesif/zzlib.lua",
["lua.resty.moesif.base64"] = "lua/resty/moesif/base64.lua",
["lua.resty.moesif.read_req_body"] = "lua/resty/moesif/read_req_body.lua",
["lua.resty.moesif.read_res_body"] = "lua/resty/moesif/read_res_body.lua"
}
}