forked from saks/lua-resty-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lua-resty-repl-scm-0.rockspec
40 lines (40 loc) · 1.33 KB
/
lua-resty-repl-scm-0.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
37
38
39
40
package = 'lua-resty-repl'
version = 'scm-0'
source = {
url = 'git://github.com/saks/lua-resty-repl',
branch = 'master'
}
description = {
summary = 'repl for openresty.',
detailed = [[
Repl with locals, upvalue and global env access, can be started from
anywhere with require('resty.repl').start(). It depends on
https://github.com/kikito/inspect.lua library.
]],
homepage = 'https://github.com/saks/lua-resty-repl',
license = 'MIT <http://opensource.org/licenses/MIT>'
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
['resty.repl'] = 'lib/resty/repl.lua',
['resty.repl.binding'] = 'lib/resty/repl/binding.lua',
['resty.repl.readline'] = 'lib/resty/repl/readline.lua',
['resty.repl.readline_stub'] = 'lib/resty/repl/readline_stub.lua',
['resty.repl.readline_utils'] = 'lib/resty/repl/readline_utils.lua',
['resty.repl.sources'] = 'lib/resty/repl/sources.lua',
['resty.repl.compiler'] = 'lib/resty/repl/compiler.lua',
['resty.repl.formatter'] = 'lib/resty/repl/formatter.lua',
['resty.repl.ui'] = 'lib/resty/repl/ui.lua',
['resty.repl.completer'] = 'lib/resty/repl/completer.lua',
['inspect'] = 'vendor/inspect.lua'
},
install = {
bin = {
['resty-repl'] = 'bin/resty-repl'
}
}
}