-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-industrial-logger-scm-0.rockspec
54 lines (50 loc) · 2.2 KB
/
lua-industrial-logger-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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package = "lua-industrial-logger"
version = "scm-0"
source = {
url = "git://github.com/djfdyuruiry/lua-industrial-logger.git",
tag = "master"
}
description = {
summary = "A logging framework adding simple, powerful and reliable logs to any Lua application",
detailed = [[
lua-industrial-logger
A pure lua logging framework that follows the conventions of popular frameworks like logback, log4net and log4j.
Logging configuration is declared using a Lua based DSL for ease of use and flexibility.
See: https://github.com/djfdyuruiry/lua-industrial-logger/blob/master/README.md
Created by djfdyuruiry: https://github.com/djfdyuruiry
]],
license = "MIT",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["lil.AnsiDecoratedStringBuilder"] = "lil/AnsiDecoratedStringBuilder.lua",
["lil.ConsoleAppender"] = "lil/ConsoleAppender.lua",
["lil.DebugLogger"] = "lil/DebugLogger.lua",
["lil.FileAppender"] = "lil/FileAppender.lua",
["lil.FileConfigurationLoader"] = "lil/FileConfigurationLoader.lua",
["lil.FileUtils"] = "lil/FileUtils.lua",
["lil.IdUtils"] = "lil/IdUtils.lua",
["lil.Levels"] = "lil/Levels.lua",
["lil.Logger"] = "lil/Logger.lua",
["lil.LoggerConfiguration"] = "lil/LoggerConfiguration.lua",
["lil.LoggerConfigurationDsl"] = "lil/LoggerConfigurationDsl.lua",
["lil.LoggerFactory"] = "lil/LoggerFactory.lua",
["lil.LuaOsUtils"] = "lil/LuaOsUtils.lua",
["lil.NativeOsUtils"] = "lil/NativeOsUtils.lua",
["lil.OsFacts"] = "lil/OsFacts.lua",
["lil.OsUtils"] = "lil/OsUtils.lua",
["lil.OsUtilsConfig"] = "lil/OsUtilsConfig.lua",
["lil.PatternBuilder"] = "lil/PatternBuilder.lua",
["lil.PatternGeneratorMap"] = "lil/PatternGeneratorMap.lua",
["lil.RollingFileAppender"] = "lil/RollingFileAppender.lua",
["lil.StringUtils"] = "lil/StringUtils.lua",
["lil.ThreadUtils"] = "lil/ThreadUtils.lua",
["lil.polyfills.loadstring"] = "lil/polyfills/loadstring.lua",
["lil.polyfills.setfenv"] = "lil/polyfills/setfenv.lua"
},
copy_directories = {}
}