Script for easily working with Luarocks trees. Allows you to configure Lua projects to only reference project-local dependencies in order to isolate them from system-wide dependencies.
luarocks install lrtInstall (or reinstall) a rock from Luarocks into ./lua_modules.
lrt install <rock name or rockspec> [additional luarocks arguments]or
lrt i <rock name or rockspec> [additional luarocks arguments]Install dependencies listed in ./deps-dev-0.rockspec.
lrt install_depsor
lrt idRun a command with Luarocks binary and package paths configured for ./lua_modules.
lrt run <command name> [arguments]or
lrt r <command name> [arguments]Run Luarocks test command with package paths configured for ./lua_modules.
lrt testor
lrt tRemove all rocks install in ./lua_modules.
lrt cleanor
lrt cCreates an empty dependency file at ./deps-dev-0.rockspec.
lrt write_depfileor
lrt wor
lrt init