-
Notifications
You must be signed in to change notification settings - Fork 1
/
kong-plugin-cluster-stats-0.1.0-1.rockspec
35 lines (31 loc) · 1.49 KB
/
kong-plugin-cluster-stats-0.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
package = "kong-plugin-cluster-stats"
version = "0.1.0-1"
-- The version '0.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.
supported_platforms = {"linux", "macosx"}
source = {
url = "https://github.com/CRED-CLUB/kong-plugin-cluster-stats",
tag = "0.1.0"
}
description = {
summary = "Plugin to get kong cluster stats e.g number of nodes",
homepage = "http://getkong.org",
license = "Apache 2.0"
}
dependencies = {
}
build = {
type = "builtin",
modules = {
["kong.plugins.cluster-stats.handler"] = "kong/plugins/cluster-stats/handler.lua",
["kong.plugins.cluster-stats.schema"] = "kong/plugins/cluster-stats/schema.lua",
["kong.plugins.cluster-stats.daos"] = "kong/plugins/cluster-stats/daos.lua",
["kong.plugins.cluster-stats.api"] = "kong/plugins/cluster-stats/api.lua",
["kong.plugins.cluster-stats.config"] = "kong/plugins/cluster-stats/config.lua",
["kong.plugins.cluster-stats.repo"] = "kong/plugins/cluster-stats/repo.lua",
["kong.plugins.cluster-stats.worker"] = "kong/plugins/cluster-stats/worker.lua",
["kong.plugins.cluster-stats.migrations.init"] = "kong/plugins/cluster-stats/migrations/init.lua",
["kong.plugins.cluster-stats.migrations.000_base_cluster_stats"] = "kong/plugins/cluster-stats/migrations/000_base_cluster_stats.lua",
}
}