├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── luaenv ├── completions ├── luaenv.bash ├── luaenv.fish └── luaenv.zsh ├── libexec ├── luaenv ├── luaenv---version ├── luaenv-commands ├── luaenv-completions ├── luaenv-exec ├── luaenv-global ├── luaenv-help ├── luaenv-hooks ├── luaenv-init ├── luaenv-local ├── luaenv-prefix ├── luaenv-rehash ├── luaenv-root ├── luaenv-sh-rehash ├── luaenv-sh-shell ├── luaenv-shims ├── luaenv-version ├── luaenv-version-file ├── luaenv-version-file-read ├── luaenv-version-file-write ├── luaenv-version-name ├── luaenv-version-origin ├── luaenv-versions ├── luaenv-whence └── luaenv-which ├── src ├── Makefile.in ├── bash.h ├── configure ├── realpath.c └── shobj-conf └── test ├── --version.bats ├── commands.bats ├── completions.bats ├── exec.bats ├── global.bats ├── help.bats ├── hooks.bats ├── init.bats ├── libexec └── luaenv-echo ├── local.bats ├── luaenv.bats ├── prefix.bats ├── rehash.bats ├── run ├── shell.bats ├── shims.bats ├── test_helper.bash ├── version-file-read.bats ├── version-file-write.bats ├── version-file.bats ├── version-name.bats ├── version-origin.bats ├── version.bats ├── versions.bats ├── whence.bats └── which.bats /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/README.md -------------------------------------------------------------------------------- /bin/luaenv: -------------------------------------------------------------------------------- 1 | ../libexec/luaenv -------------------------------------------------------------------------------- /completions/luaenv.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/completions/luaenv.bash -------------------------------------------------------------------------------- /completions/luaenv.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/completions/luaenv.fish -------------------------------------------------------------------------------- /completions/luaenv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/completions/luaenv.zsh -------------------------------------------------------------------------------- /libexec/luaenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv -------------------------------------------------------------------------------- /libexec/luaenv---version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv---version -------------------------------------------------------------------------------- /libexec/luaenv-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-commands -------------------------------------------------------------------------------- /libexec/luaenv-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-completions -------------------------------------------------------------------------------- /libexec/luaenv-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-exec -------------------------------------------------------------------------------- /libexec/luaenv-global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-global -------------------------------------------------------------------------------- /libexec/luaenv-help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-help -------------------------------------------------------------------------------- /libexec/luaenv-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-hooks -------------------------------------------------------------------------------- /libexec/luaenv-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-init -------------------------------------------------------------------------------- /libexec/luaenv-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-local -------------------------------------------------------------------------------- /libexec/luaenv-prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-prefix -------------------------------------------------------------------------------- /libexec/luaenv-rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-rehash -------------------------------------------------------------------------------- /libexec/luaenv-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-root -------------------------------------------------------------------------------- /libexec/luaenv-sh-rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-sh-rehash -------------------------------------------------------------------------------- /libexec/luaenv-sh-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-sh-shell -------------------------------------------------------------------------------- /libexec/luaenv-shims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-shims -------------------------------------------------------------------------------- /libexec/luaenv-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version -------------------------------------------------------------------------------- /libexec/luaenv-version-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version-file -------------------------------------------------------------------------------- /libexec/luaenv-version-file-read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version-file-read -------------------------------------------------------------------------------- /libexec/luaenv-version-file-write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version-file-write -------------------------------------------------------------------------------- /libexec/luaenv-version-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version-name -------------------------------------------------------------------------------- /libexec/luaenv-version-origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-version-origin -------------------------------------------------------------------------------- /libexec/luaenv-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-versions -------------------------------------------------------------------------------- /libexec/luaenv-whence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-whence -------------------------------------------------------------------------------- /libexec/luaenv-which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/libexec/luaenv-which -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/bash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/src/bash.h -------------------------------------------------------------------------------- /src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/src/configure -------------------------------------------------------------------------------- /src/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/src/realpath.c -------------------------------------------------------------------------------- /src/shobj-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/src/shobj-conf -------------------------------------------------------------------------------- /test/--version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/--version.bats -------------------------------------------------------------------------------- /test/commands.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/commands.bats -------------------------------------------------------------------------------- /test/completions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/completions.bats -------------------------------------------------------------------------------- /test/exec.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/exec.bats -------------------------------------------------------------------------------- /test/global.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/global.bats -------------------------------------------------------------------------------- /test/help.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/help.bats -------------------------------------------------------------------------------- /test/hooks.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/hooks.bats -------------------------------------------------------------------------------- /test/init.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/init.bats -------------------------------------------------------------------------------- /test/libexec/luaenv-echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/libexec/luaenv-echo -------------------------------------------------------------------------------- /test/local.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/local.bats -------------------------------------------------------------------------------- /test/luaenv.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/luaenv.bats -------------------------------------------------------------------------------- /test/prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/prefix.bats -------------------------------------------------------------------------------- /test/rehash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/rehash.bats -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/run -------------------------------------------------------------------------------- /test/shell.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/shell.bats -------------------------------------------------------------------------------- /test/shims.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/shims.bats -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/test_helper.bash -------------------------------------------------------------------------------- /test/version-file-read.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version-file-read.bats -------------------------------------------------------------------------------- /test/version-file-write.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version-file-write.bats -------------------------------------------------------------------------------- /test/version-file.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version-file.bats -------------------------------------------------------------------------------- /test/version-name.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version-name.bats -------------------------------------------------------------------------------- /test/version-origin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version-origin.bats -------------------------------------------------------------------------------- /test/version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/version.bats -------------------------------------------------------------------------------- /test/versions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/versions.bats -------------------------------------------------------------------------------- /test/whence.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/whence.bats -------------------------------------------------------------------------------- /test/which.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cehoffman/luaenv/HEAD/test/which.bats --------------------------------------------------------------------------------