From 68f0cc6c546983015f796f1e9e6b88f7ca04b747 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 13 Feb 2020 13:08:18 -0300 Subject: [PATCH] feat(rockspec) added rockspec for 1.2.0 --- .../lua-resty-healthcheck-1.2.0-1.rockspec | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 rockspecs/lua-resty-healthcheck-1.2.0-1.rockspec diff --git a/rockspecs/lua-resty-healthcheck-1.2.0-1.rockspec b/rockspecs/lua-resty-healthcheck-1.2.0-1.rockspec new file mode 100644 index 00000000..82cc1b0a --- /dev/null +++ b/rockspecs/lua-resty-healthcheck-1.2.0-1.rockspec @@ -0,0 +1,26 @@ +package = "lua-resty-healthcheck" +version = "1.2.0-1" +source = { + url = "https://github.com/Kong/lua-resty-healthcheck/archive/1.2.0.tar.gz", + dir = "lua-resty-healthcheck-1.2.0" +} +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/Kong/lua-resty-healthcheck", + license = "Apache 2.0" +} +dependencies = { + "lua-resty-worker-events >= 0.3.2" +} +build = { + type = "builtin", + modules = { + ["resty.healthcheck"] = "lib/resty/healthcheck.lua", + ["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua" + } +}