Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lfw/luarocks-admin.lua')
-rw-r--r--lfw/luarocks-admin.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/lfw/luarocks-admin.lua b/lfw/luarocks-admin.lua
new file mode 100644
index 0000000..4f7a9a2
--- /dev/null
+++ b/lfw/luarocks-admin.lua
@@ -0,0 +1,16 @@
+#!/usr/local/bin/lua
+
+local command_line = require("luarocks.command_line")
+
+program_name = "luarocks-admin"
+program_description = "LuaRocks repository administration interface"
+
+commands = {
+}
+
+commands.help = require("luarocks.help")
+commands.make_manifest = require("luarocks.make_manifest")
+commands.add = require("luarocks.add")
+commands.refresh_cache = require("luarocks.refresh_cache")
+
+command_line.run_command(...)