-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlaunchdarkly-server-sdk-redis-2.1.2-0.rockspec
52 lines (44 loc) · 1.48 KB
/
launchdarkly-server-sdk-redis-2.1.2-0.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
48
49
50
51
52
package = "launchdarkly-server-sdk-redis"
rockspec_format = "3.0"
version = "2.1.2-0"
description = {
summary = "Redis integration for LaunchDarkly Lua Server-side SDK.",
detailed = [[
Provides a Redis data source for the LaunchDarkly Lua Server-Side SDK. Use this if your feature flags
should be retrieved from Redis instead of LaunchDarkly SaaS (for instance, when using Relay Proxy.)
]],
license = "Apache-2.0",
homepage = "https://github.com/launchdarkly/lua-server-sdk",
issues_url = "https://github.com/launchdarkly/lua-server-sdk/issues/",
maintainer = "LaunchDarkly <[email protected]>",
labels = {"launchdarkly", "launchdarkly-sdk", "feature-flags", "feature-toggles", "redis"}
}
source = {
url = "git+https://github.com/launchdarkly/lua-server-sdk.git",
tag = "v2.1.2"
}
dependencies = {
"lua >= 5.1, <= 5.4",
"launchdarkly-server-sdk ~> 2"
}
external_dependencies = {
LDREDIS = {
header = "launchdarkly/server_side/bindings/c/integrations/redis/redis_source.h",
library = "launchdarkly-cpp-server-redis-source"
}
}
test = {
type = "command",
command = "./scripts/interpreter.sh test-redis.lua"
}
build = {
type = "builtin",
modules = {
["launchdarkly_server_sdk_redis"] = {
sources = { "launchdarkly-server-sdk-redis.c" },
incdirs = {"$(LDREDIS_INCDIR)"},
libdirs = {"$(LDREDIS_LIBDIR)"},
libraries = {"launchdarkly-cpp-server-redis-source"}
}
}
}