-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathdebugger-lua-scm-1.rockspec
30 lines (26 loc) · 1.02 KB
/
debugger-lua-scm-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
package = "debugger-lua"
version = "scm-1"
source = {
url = "https://raw.githubusercontent.com/slembcke/debugger.lua/master/debugger.lua"
}
description = {
summary = "A simple, highly embedabble CLI debugger for Lua 5.x, and LuaJIT 2.0.",
detailed = [[
A simple, highly embedabble CLI debugger for Lua 5.x, and LuaJIT 2.0.
Features:
* Simple installation as either a single .lua file (< 500 LoC) OR a single .c/.h file pair.
* Drop in xpcall() and lua_pcall() replacements that drop into the REPL for an error.
* Optional colored output and GNU readline (LuaJIT) support.
* Extendable I/O that defaults to stdin/stdout.
* Simple assert style breakpoints.
* REPL with step, next, finish, print/eval, up/down, backtrace and list locals commands.
* Pretty printed output for tables.
* Speed! Debug hooks are only set when stepping and do not otherwise affect performance.
]],
}
build = {
type = "builtin",
modules = {
debugger = "debugger.lua"
}
}