-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotfix-scm-1.rockspec
46 lines (37 loc) · 1.13 KB
/
hotfix-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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package = "hotfix"
version = "scm-1"
source = {
url = "git://github.com/jinq0123/hotfix",
}
description = {
summary = "Lua 5.2/5.3 hotfix. Hot update functions and keep old data.",
detailed = [[
hotfix reload the module and update the old module, keeping the old data.
Usage:
local hotfix = require("hotfix")
hotfix.hotfix_module("mymodule.sub_module")
hotfix_module() uses package.searchpath(module_name, package.path)
to search the path of module.
The module is reloaded and the returned value is updated to package.loaded[module_name].
hotfix_module() will skip unloaded module to avoid unexpected loading.
Functons are updated to new ones but old upvalues are kept.
Old tables are kept and new fields are inserted.
All references to old functions are replaced to new ones.
]],
homepage = "https://github.com/jinq0123/hotfix",
license = "Apache License 2.0",
}
dependencies = {
"lua >= 5.2",
}
build = {
type = "builtin",
modules = {
functions_replacer = "functions_replacer.lua",
hotfix = "hotfix.lua",
module_updater = "module_updater.lua",
},
copy_directories = {
"helper",
},
}