forked from saks/lua-resty-repl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlua-resty-console-0.1.1-1.rockspec
36 lines (35 loc) · 1.21 KB
/
lua-resty-console-0.1.1-1.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
package = "lua-resty-console"
version = "0.1.1-1"
source = {
url = "git://github.com/nicoster/lua-resty-console",
tag = "v0.1.1"
}
description = {
summary = "Interactive console (REPL) for Openresty to inspect Lua VM internal state, to run lua code, to invoke functions and more",
homepage = "https://github.com/nicoster/lua-resty-console",
license = "MIT <http://opensource.org/licenses/MIT>"
}
dependencies = {
"lua-hiredis-with-5.2-fix >= 0.2.2",
"inspect >= 2.0",
"argparse >= 0.6.0",
}
build = {
type = "builtin",
modules = {
["resty.console"] = "lib/resty/console.lua",
["resty.console.binding"] = "lib/resty/console/binding.lua",
["resty.console.client"] = "lib/resty/console/client.lua",
["resty.console.completer"] = "lib/resty/console/completer.lua",
["resty.console.consts"] = "lib/resty/console/consts.lua",
["resty.console.readline"] = "lib/resty/console/readline.lua",
["resty.console.readline_h"] = "lib/resty/console/readline_h.lua",
["resty.console.resp"] = "lib/resty/console/resp.lua",
["resty.console.utils"] = "lib/resty/console/utils.lua",
},
install = {
bin = {
["resty-cli"] = "bin/resty-cli",
}
},
}