summaryrefslogtreecommitdiffstats
path: root/acf2/loader.lua
diff options
context:
space:
mode:
Diffstat (limited to 'acf2/loader.lua')
-rw-r--r--acf2/loader.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/acf2/loader.lua b/acf2/loader.lua
new file mode 100644
index 0000000..71aeabf
--- /dev/null
+++ b/acf2/loader.lua
@@ -0,0 +1,23 @@
+--[[
+Copyright (c) 2012-2013 Kaarle Ritvanen
+See LICENSE file for license details
+--]]
+
+module(..., package.seeall)
+
+local pth = require('acf2.path')
+
+local posix = require('posix')
+local stringy = require('stringy')
+
+return function(subdir)
+ local comps = pth.split('acf2/'..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