-
Notifications
You must be signed in to change notification settings - Fork 8
/
kong-plugin-moesif-2.1.0-1.rockspec
45 lines (40 loc) · 2 KB
/
kong-plugin-moesif-2.1.0-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
package = "kong-plugin-moesif" -- TODO: rename, must match the info in the filename of this rockspec!
-- as a convention; stick to the prefix: `kong-plugin-`
version = "2.1.0-1" -- TODO: renumber, must match the info in the filename of this rockspec!
-- The version '2.1.0' 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("^kong%-plugin%-(.+)$") -- "moesif"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Moesif/kong-plugin-moesif/",
tag = "2.1.0"
}
description = {
summary = "Moesif plugin for kong",
homepage = "http://moesif.com",
license = "MIT"
}
dependencies = {
"lua-resty-http",
"lua-zlib"
}
build = {
type = "builtin",
modules = {
["kong.plugins.moesif.handler"] = "kong/plugins/moesif/handler.lua",
["kong.plugins.moesif.governance_helpers"] = "kong/plugins/moesif/governance_helpers.lua",
["kong.plugins.moesif.moesif_gov"] = "kong/plugins/moesif/moesif_gov.lua",
["kong.plugins.moesif.schema"] = "kong/plugins/moesif/schema.lua",
["kong.plugins.moesif.regex_config_helpers"] = "kong/plugins/moesif/regex_config_helpers.lua",
["kong.plugins.moesif.log"] = "kong/plugins/moesif/log.lua",
["kong.plugins.moesif.moesif_ser"] = "kong/plugins/moesif/moesif_ser.lua",
["kong.plugins.moesif.helpers"] = "kong/plugins/moesif/helpers.lua",
["kong.plugins.moesif.connection"] = "kong/plugins/moesif/connection.lua",
["kong.plugins.moesif.client_ip"] = "kong/plugins/moesif/client_ip.lua",
["kong.plugins.moesif.zzlib"] = "kong/plugins/moesif/zzlib.lua",
["kong.plugins.moesif.base64"] = "kong/plugins/moesif/base64.lua"
}
}