summaryrefslogtreecommitdiffstats
path: root/aconf/loader.lua
diff options
context:
space:
mode:
Diffstat (limited to 'aconf/loader.lua')
-rw-r--r--aconf/loader.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/aconf/loader.lua b/aconf/loader.lua
new file mode 100644
index 0000000..8c58adc
--- /dev/null
+++ b/aconf/loader.lua
@@ -0,0 +1,21 @@
+--[[
+Copyright (c) 2012-2014 Kaarle Ritvanen
+See LICENSE file for license details
+--]]
+
+local pth = require('aconf.path')
+
+local posix = require('posix')
+local stringy = require('stringy')
+
+return function(subdir)
+ local comps = pth.split('aconf/'..subdir)
+ local res = {}
+ for _, modfile in ipairs(posix.dir(pth.join(unpack(comps)))) do
+ if stringy.endswith(modfile, '.lua') then
+ local name = modfile:sub(1, -5)
+ res[name] = require(table.concat(comps, '.')..'.'..name)
+ end
+ end
+ return res
+ end