Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions rockspec/api7-lua-resty-websocket-0.1.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package = "api7-lua-resty-websocket"
version = "0.1.0-0"
source = {
url = "git+https://github.com/api7/lua-resty-websocket",
tag = "v0.1.0",
}

description = {
summary = "Lua WebSocket implementation for the ngx_lua module",
detailed = [[
api7-lua-resty-websocket is api7's fork of the OpenResty WebSocket
library. It implements WebSocket server and client libraries based
on the ngx_lua module, taking advantage of ngx_lua's cosocket API
for fully nonblocking behavior. It also carries a WebSocket reverse
proxy module ported from Kong/lua-resty-websocket-proxy.
]],
homepage = "https://github.com/api7/lua-resty-websocket",
license = "2-clause BSD",
}

dependencies = {}

build = {
type = "builtin",
modules = {
["resty.websocket.client"] = "lib/resty/websocket/client.lua",
["resty.websocket.server"] = "lib/resty/websocket/server.lua",
["resty.websocket.protocol"] = "lib/resty/websocket/protocol.lua",
["resty.websocket.proxy"] = "lib/resty/websocket/proxy.lua",
}
}