This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git


The following commit(s) were added to refs/heads/master by this push:
     new 95684f3  add luarocks for skywalking-nginx-lua. (#9)
95684f3 is described below

commit 95684f3dcccab36f6592bf91944cdd5424e0d7a4
Author: Wen Ming <[email protected]>
AuthorDate: Sat Feb 29 20:20:09 2020 +0800

    add luarocks for skywalking-nginx-lua. (#9)
    
    luarocks is package manager for lua
    
    Co-authored-by: Jared Tan <[email protected]>
---
 skywalking-nginx-lua-1.0-0.rockspec | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/skywalking-nginx-lua-1.0-0.rockspec 
b/skywalking-nginx-lua-1.0-0.rockspec
new file mode 100644
index 0000000..0ec803c
--- /dev/null
+++ b/skywalking-nginx-lua-1.0-0.rockspec
@@ -0,0 +1,29 @@
+package = "skywalking-nginx-lua"
+version = "1.0-0"
+source = {
+   url = "git://github.com/apache/skywalking-nginx-lua",
+   branch = "master",
+}
+
+description = {
+   summary = "The Nginx Lua agent for Apache SkyWalking",
+   homepage = "https://github.com/apache/skywalking-nginx-lua";,
+   license = "Apache License 2.0"
+}
+
+dependencies = {
+   "lua-resty-http = 0.15"
+}
+
+build = {
+   type = "builtin",
+   modules = {
+    ["skywalking.register"] = "lib/skywalking/register.lua",
+    ["skywalking.segment_ref"] = "lib/skywalking/segment_ref.lua",
+    ["skywalking.segment"] = "lib/skywalking/segment.lua",
+    ["skywalking.span_layer"] = "lib/skywalking/span_layer.lua",
+    ["skywalking.span"] = "lib/skywalking/span.lua",
+    ["skywalking.tracing_context"] = "lib/skywalking/tracing_context.lua",
+    ["skywalking.util"] = "lib/skywalking/util.lua",
+   }
+}

Reply via email to