diff --git a/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec b/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec new file mode 100644 index 00000000..7ff2c022 --- /dev/null +++ b/rockspecs/lua-resty-healthcheck-api7-2.2.2-0.rockspec @@ -0,0 +1,28 @@ +package = "lua-resty-healthcheck-api7" +version = "2.2.2-0" +source = { + url = "git://github.com/api7/lua-resty-healthcheck", + tag = "v2.2.2" +} + +description = { + summary = "Healthchecks for OpenResty to check upstream service status", + detailed = [[ + lua-resty-healthcheck is a module that can check upstream service + availability by sending requests and validating responses at timed + intervals. + ]], + homepage = "https://github.com/api7/lua-resty-healthcheck", + license = "Apache 2.0" +} + +dependencies = { + "lua-resty-worker-events = 1.0.0" +} +build = { + type = "builtin", + modules = { + ["resty.healthcheck"] = "lib/resty/healthcheck.lua", + ["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua" + } +}