├── .buildkite ├── hooks │ └── pre-command └── pipeline.nix ├── .ci ├── freebsd.sh ├── osx.sh └── ubuntu.sh ├── .direnvrc ├── .envrc ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── Spookfile ├── bin └── shpec ├── flake.lock ├── flake.nix ├── init.moon ├── lib ├── arguments.moon ├── bsd │ └── event_loop.moon ├── colors.moon ├── event.moon ├── event_loop.moon ├── fs.moon ├── globals.moon ├── linux │ └── event_loop.moon ├── log.moon ├── notify.moon ├── process.moon ├── shell.moon ├── shell_utils.moon ├── spook.moon ├── spookfile_helpers.moon ├── terminal_notifier.moon └── utils.moon ├── lint_config.lua ├── run.lua ├── shell.nix ├── shpec └── spook_shpec.sh ├── spec ├── event_loop_spec.moon ├── fs_spec.moon ├── globals_spec.moon ├── notify_spec.moon ├── spec_helper.moon ├── spook_spec.moon ├── spookfile_helpers_spec.moon └── support │ ├── busted │ ├── busted_bootstrap │ ├── core.lua │ ├── done.lua │ ├── init.lua │ ├── languages │ │ ├── ar.lua │ │ ├── en.lua │ │ ├── fr.lua │ │ ├── ja.lua │ │ ├── nl.lua │ │ ├── ru.lua │ │ ├── ua.lua │ │ └── zh.lua │ ├── loop │ │ ├── copas.lua │ │ ├── default.lua │ │ └── ev.lua │ ├── moon.lua │ └── output │ │ ├── TAP.lua │ │ ├── json.lua │ │ ├── junit.lua │ │ ├── plain_terminal.lua │ │ ├── stub.lua │ │ └── utf_terminal.lua │ ├── cliargs.lua │ ├── luassert │ ├── assert.lua │ ├── assertions.lua │ ├── compatibility.lua │ ├── formatters │ │ ├── binarystring.lua │ │ └── init.lua │ ├── init.lua │ ├── languages │ │ ├── ar.lua │ │ ├── de.lua │ │ ├── en.lua │ │ ├── fr.lua │ │ ├── ja.lua │ │ ├── nl.lua │ │ ├── ru.lua │ │ ├── ua.lua │ │ └── zh.lua │ ├── match.lua │ ├── matchers │ │ ├── composite.lua │ │ ├── core.lua │ │ └── init.lua │ ├── mock.lua │ ├── modifiers.lua │ ├── namespaces.lua │ ├── spy.lua │ ├── state.lua │ ├── stub.lua │ └── util.lua │ ├── moonpick │ ├── config.lua │ └── init.lua │ ├── pl │ ├── Date.lua │ ├── List.lua │ ├── Map.lua │ ├── MultiMap.lua │ ├── OrderedMap.lua │ ├── Set.lua │ ├── app.lua │ ├── array2d.lua │ ├── class.lua │ ├── compat.lua │ ├── comprehension.lua │ ├── config.lua │ ├── data.lua │ ├── dir.lua │ ├── file.lua │ ├── func.lua │ ├── import_into.lua │ ├── init.lua │ ├── input.lua │ ├── lapp.lua │ ├── lexer.lua │ ├── luabalanced.lua │ ├── operator.lua │ ├── path.lua │ ├── permute.lua │ ├── platf │ │ └── luajava.lua │ ├── pretty.lua │ ├── seq.lua │ ├── sip.lua │ ├── strict.lua │ ├── stringio.lua │ ├── stringx.lua │ ├── tablex.lua │ ├── template.lua │ ├── test.lua │ ├── text.lua │ ├── types.lua │ ├── utils.lua │ └── xml.lua │ ├── run_busted.lua │ ├── run_linter.lua │ └── say │ └── init.lua ├── spook.c ├── tools ├── compile_moon.lua └── pack.lua └── vendor ├── ansicolors.lua ├── argparse.lua ├── classy.moon ├── lpcap.lua ├── lpcode.lua ├── lpeglj.lua ├── lpprint.lua ├── lpvm.lua ├── moon ├── all.lua └── init.lua ├── moonscript ├── base.lua ├── cmd │ ├── args.lua │ ├── coverage.lua │ ├── lint.lua │ └── watchers.lua ├── compile.lua ├── compile │ ├── statement.lua │ └── value.lua ├── data.lua ├── dump.lua ├── errors.lua ├── init.lua ├── line_tables.lua ├── parse.lua ├── parse │ ├── env.lua │ ├── literals.lua │ └── util.lua ├── transform.lua ├── transform │ ├── accumulator.lua │ ├── class.lua │ ├── comprehension.lua │ ├── destructure.lua │ ├── names.lua │ ├── statement.lua │ ├── statements.lua │ ├── transformer.lua │ └── value.lua ├── types.lua ├── util.lua └── version.lua ├── re.lua ├── serpent.lua ├── syscall.lua └── syscall ├── abi.lua ├── bit.lua ├── bsd ├── ffi.lua ├── syscalls.lua └── types.lua ├── compat.lua ├── ffitypes.lua ├── freebsd ├── c.lua ├── constants.lua ├── errors.lua ├── fcntl.lua ├── ffi.lua ├── ioctl.lua ├── syscalls.lua ├── sysctl.lua ├── types.lua ├── util.lua └── version.lua ├── helpers.lua ├── lfs.lua ├── libc.lua ├── linux ├── arm │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── arm64 │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── c.lua ├── cgroup.lua ├── constants.lua ├── errors.lua ├── fcntl.lua ├── ffi.lua ├── ioctl.lua ├── mips │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── mipsel ├── netfilter.lua ├── nl.lua ├── nr.lua ├── ppc │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── ppc64le │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── sockopt.lua ├── syscalls.lua ├── types.lua ├── util.lua ├── x64 │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua └── x86 │ ├── constants.lua │ ├── ffi.lua │ ├── ioctl.lua │ └── nr.lua ├── methods.lua ├── netbsd ├── c.lua ├── constants.lua ├── errors.lua ├── fcntl.lua ├── ffifunctions.lua ├── ffitypes.lua ├── init.lua ├── ioctl.lua ├── nr.lua ├── syscalls.lua ├── sysctl.lua ├── types.lua ├── util.lua └── version.lua ├── openbsd ├── c.lua ├── constants.lua ├── errors.lua ├── fcntl.lua ├── ffi.lua ├── ioctl.lua ├── syscalls.lua ├── sysctl.lua ├── types.lua ├── util.lua └── version.lua ├── osx ├── c.lua ├── constants.lua ├── errors.lua ├── fcntl.lua ├── ffi.lua ├── ioctl.lua ├── syscalls.lua ├── sysctl.lua ├── types.lua └── util.lua ├── rump ├── c.lua ├── ffirump.lua └── init.lua ├── shared └── types.lua ├── syscalls.lua ├── types.lua └── util.lua /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.buildkite/pipeline.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.buildkite/pipeline.nix -------------------------------------------------------------------------------- /.ci/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.ci/freebsd.sh -------------------------------------------------------------------------------- /.ci/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.ci/osx.sh -------------------------------------------------------------------------------- /.ci/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.ci/ubuntu.sh -------------------------------------------------------------------------------- /.direnvrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.direnvrc -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/README.md -------------------------------------------------------------------------------- /Spookfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/Spookfile -------------------------------------------------------------------------------- /bin/shpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/bin/shpec -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/flake.nix -------------------------------------------------------------------------------- /init.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/init.moon -------------------------------------------------------------------------------- /lib/arguments.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/arguments.moon -------------------------------------------------------------------------------- /lib/bsd/event_loop.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/bsd/event_loop.moon -------------------------------------------------------------------------------- /lib/colors.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/colors.moon -------------------------------------------------------------------------------- /lib/event.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/event.moon -------------------------------------------------------------------------------- /lib/event_loop.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/event_loop.moon -------------------------------------------------------------------------------- /lib/fs.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/fs.moon -------------------------------------------------------------------------------- /lib/globals.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/globals.moon -------------------------------------------------------------------------------- /lib/linux/event_loop.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/linux/event_loop.moon -------------------------------------------------------------------------------- /lib/log.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/log.moon -------------------------------------------------------------------------------- /lib/notify.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/notify.moon -------------------------------------------------------------------------------- /lib/process.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/process.moon -------------------------------------------------------------------------------- /lib/shell.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/shell.moon -------------------------------------------------------------------------------- /lib/shell_utils.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/shell_utils.moon -------------------------------------------------------------------------------- /lib/spook.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/spook.moon -------------------------------------------------------------------------------- /lib/spookfile_helpers.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/spookfile_helpers.moon -------------------------------------------------------------------------------- /lib/terminal_notifier.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/terminal_notifier.moon -------------------------------------------------------------------------------- /lib/utils.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lib/utils.moon -------------------------------------------------------------------------------- /lint_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/lint_config.lua -------------------------------------------------------------------------------- /run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/run.lua -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/shell.nix -------------------------------------------------------------------------------- /shpec/spook_shpec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/shpec/spook_shpec.sh -------------------------------------------------------------------------------- /spec/event_loop_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/event_loop_spec.moon -------------------------------------------------------------------------------- /spec/fs_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/fs_spec.moon -------------------------------------------------------------------------------- /spec/globals_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/globals_spec.moon -------------------------------------------------------------------------------- /spec/notify_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/notify_spec.moon -------------------------------------------------------------------------------- /spec/spec_helper.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/spec_helper.moon -------------------------------------------------------------------------------- /spec/spook_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/spook_spec.moon -------------------------------------------------------------------------------- /spec/spookfile_helpers_spec.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/spookfile_helpers_spec.moon -------------------------------------------------------------------------------- /spec/support/busted/busted_bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/busted_bootstrap -------------------------------------------------------------------------------- /spec/support/busted/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/core.lua -------------------------------------------------------------------------------- /spec/support/busted/done.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/done.lua -------------------------------------------------------------------------------- /spec/support/busted/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/init.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/ar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/ar.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/en.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/en.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/fr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/fr.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/ja.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/ja.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/nl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/nl.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/ru.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/ru.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/ua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/ua.lua -------------------------------------------------------------------------------- /spec/support/busted/languages/zh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/languages/zh.lua -------------------------------------------------------------------------------- /spec/support/busted/loop/copas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/loop/copas.lua -------------------------------------------------------------------------------- /spec/support/busted/loop/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/loop/default.lua -------------------------------------------------------------------------------- /spec/support/busted/loop/ev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/loop/ev.lua -------------------------------------------------------------------------------- /spec/support/busted/moon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/moon.lua -------------------------------------------------------------------------------- /spec/support/busted/output/TAP.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/TAP.lua -------------------------------------------------------------------------------- /spec/support/busted/output/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/json.lua -------------------------------------------------------------------------------- /spec/support/busted/output/junit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/junit.lua -------------------------------------------------------------------------------- /spec/support/busted/output/plain_terminal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/plain_terminal.lua -------------------------------------------------------------------------------- /spec/support/busted/output/stub.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/stub.lua -------------------------------------------------------------------------------- /spec/support/busted/output/utf_terminal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/busted/output/utf_terminal.lua -------------------------------------------------------------------------------- /spec/support/cliargs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/cliargs.lua -------------------------------------------------------------------------------- /spec/support/luassert/assert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/assert.lua -------------------------------------------------------------------------------- /spec/support/luassert/assertions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/assertions.lua -------------------------------------------------------------------------------- /spec/support/luassert/compatibility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/compatibility.lua -------------------------------------------------------------------------------- /spec/support/luassert/formatters/binarystring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/formatters/binarystring.lua -------------------------------------------------------------------------------- /spec/support/luassert/formatters/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/formatters/init.lua -------------------------------------------------------------------------------- /spec/support/luassert/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/init.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/ar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/ar.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/de.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/de.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/en.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/en.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/fr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/fr.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/ja.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/ja.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/nl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/nl.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/ru.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/ru.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/ua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/ua.lua -------------------------------------------------------------------------------- /spec/support/luassert/languages/zh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/languages/zh.lua -------------------------------------------------------------------------------- /spec/support/luassert/match.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/match.lua -------------------------------------------------------------------------------- /spec/support/luassert/matchers/composite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/matchers/composite.lua -------------------------------------------------------------------------------- /spec/support/luassert/matchers/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/matchers/core.lua -------------------------------------------------------------------------------- /spec/support/luassert/matchers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/matchers/init.lua -------------------------------------------------------------------------------- /spec/support/luassert/mock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/mock.lua -------------------------------------------------------------------------------- /spec/support/luassert/modifiers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/modifiers.lua -------------------------------------------------------------------------------- /spec/support/luassert/namespaces.lua: -------------------------------------------------------------------------------- 1 | -- stores the list of namespaces 2 | return {} 3 | -------------------------------------------------------------------------------- /spec/support/luassert/spy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/spy.lua -------------------------------------------------------------------------------- /spec/support/luassert/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/state.lua -------------------------------------------------------------------------------- /spec/support/luassert/stub.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/stub.lua -------------------------------------------------------------------------------- /spec/support/luassert/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/luassert/util.lua -------------------------------------------------------------------------------- /spec/support/moonpick/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/moonpick/config.lua -------------------------------------------------------------------------------- /spec/support/moonpick/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/moonpick/init.lua -------------------------------------------------------------------------------- /spec/support/pl/Date.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/Date.lua -------------------------------------------------------------------------------- /spec/support/pl/List.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/List.lua -------------------------------------------------------------------------------- /spec/support/pl/Map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/Map.lua -------------------------------------------------------------------------------- /spec/support/pl/MultiMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/MultiMap.lua -------------------------------------------------------------------------------- /spec/support/pl/OrderedMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/OrderedMap.lua -------------------------------------------------------------------------------- /spec/support/pl/Set.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/Set.lua -------------------------------------------------------------------------------- /spec/support/pl/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/app.lua -------------------------------------------------------------------------------- /spec/support/pl/array2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/array2d.lua -------------------------------------------------------------------------------- /spec/support/pl/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/class.lua -------------------------------------------------------------------------------- /spec/support/pl/compat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/compat.lua -------------------------------------------------------------------------------- /spec/support/pl/comprehension.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/comprehension.lua -------------------------------------------------------------------------------- /spec/support/pl/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/config.lua -------------------------------------------------------------------------------- /spec/support/pl/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/data.lua -------------------------------------------------------------------------------- /spec/support/pl/dir.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/dir.lua -------------------------------------------------------------------------------- /spec/support/pl/file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/file.lua -------------------------------------------------------------------------------- /spec/support/pl/func.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/func.lua -------------------------------------------------------------------------------- /spec/support/pl/import_into.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/import_into.lua -------------------------------------------------------------------------------- /spec/support/pl/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/init.lua -------------------------------------------------------------------------------- /spec/support/pl/input.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/input.lua -------------------------------------------------------------------------------- /spec/support/pl/lapp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/lapp.lua -------------------------------------------------------------------------------- /spec/support/pl/lexer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/lexer.lua -------------------------------------------------------------------------------- /spec/support/pl/luabalanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/luabalanced.lua -------------------------------------------------------------------------------- /spec/support/pl/operator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/operator.lua -------------------------------------------------------------------------------- /spec/support/pl/path.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/path.lua -------------------------------------------------------------------------------- /spec/support/pl/permute.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/permute.lua -------------------------------------------------------------------------------- /spec/support/pl/platf/luajava.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/platf/luajava.lua -------------------------------------------------------------------------------- /spec/support/pl/pretty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/pretty.lua -------------------------------------------------------------------------------- /spec/support/pl/seq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/seq.lua -------------------------------------------------------------------------------- /spec/support/pl/sip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/sip.lua -------------------------------------------------------------------------------- /spec/support/pl/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/strict.lua -------------------------------------------------------------------------------- /spec/support/pl/stringio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/stringio.lua -------------------------------------------------------------------------------- /spec/support/pl/stringx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/stringx.lua -------------------------------------------------------------------------------- /spec/support/pl/tablex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/tablex.lua -------------------------------------------------------------------------------- /spec/support/pl/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/template.lua -------------------------------------------------------------------------------- /spec/support/pl/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/test.lua -------------------------------------------------------------------------------- /spec/support/pl/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/text.lua -------------------------------------------------------------------------------- /spec/support/pl/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/types.lua -------------------------------------------------------------------------------- /spec/support/pl/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/utils.lua -------------------------------------------------------------------------------- /spec/support/pl/xml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/pl/xml.lua -------------------------------------------------------------------------------- /spec/support/run_busted.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/run_busted.lua -------------------------------------------------------------------------------- /spec/support/run_linter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/run_linter.lua -------------------------------------------------------------------------------- /spec/support/say/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spec/support/say/init.lua -------------------------------------------------------------------------------- /spook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/spook.c -------------------------------------------------------------------------------- /tools/compile_moon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/tools/compile_moon.lua -------------------------------------------------------------------------------- /tools/pack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/tools/pack.lua -------------------------------------------------------------------------------- /vendor/ansicolors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/ansicolors.lua -------------------------------------------------------------------------------- /vendor/argparse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/argparse.lua -------------------------------------------------------------------------------- /vendor/classy.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/classy.moon -------------------------------------------------------------------------------- /vendor/lpcap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/lpcap.lua -------------------------------------------------------------------------------- /vendor/lpcode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/lpcode.lua -------------------------------------------------------------------------------- /vendor/lpeglj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/lpeglj.lua -------------------------------------------------------------------------------- /vendor/lpprint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/lpprint.lua -------------------------------------------------------------------------------- /vendor/lpvm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/lpvm.lua -------------------------------------------------------------------------------- /vendor/moon/all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moon/all.lua -------------------------------------------------------------------------------- /vendor/moon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moon/init.lua -------------------------------------------------------------------------------- /vendor/moonscript/base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/base.lua -------------------------------------------------------------------------------- /vendor/moonscript/cmd/args.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/cmd/args.lua -------------------------------------------------------------------------------- /vendor/moonscript/cmd/coverage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/cmd/coverage.lua -------------------------------------------------------------------------------- /vendor/moonscript/cmd/lint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/cmd/lint.lua -------------------------------------------------------------------------------- /vendor/moonscript/cmd/watchers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/cmd/watchers.lua -------------------------------------------------------------------------------- /vendor/moonscript/compile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/compile.lua -------------------------------------------------------------------------------- /vendor/moonscript/compile/statement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/compile/statement.lua -------------------------------------------------------------------------------- /vendor/moonscript/compile/value.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/compile/value.lua -------------------------------------------------------------------------------- /vendor/moonscript/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/data.lua -------------------------------------------------------------------------------- /vendor/moonscript/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/dump.lua -------------------------------------------------------------------------------- /vendor/moonscript/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/errors.lua -------------------------------------------------------------------------------- /vendor/moonscript/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/init.lua -------------------------------------------------------------------------------- /vendor/moonscript/line_tables.lua: -------------------------------------------------------------------------------- 1 | return { } 2 | -------------------------------------------------------------------------------- /vendor/moonscript/parse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/parse.lua -------------------------------------------------------------------------------- /vendor/moonscript/parse/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/parse/env.lua -------------------------------------------------------------------------------- /vendor/moonscript/parse/literals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/parse/literals.lua -------------------------------------------------------------------------------- /vendor/moonscript/parse/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/parse/util.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/accumulator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/accumulator.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/class.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/comprehension.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/comprehension.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/destructure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/destructure.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/names.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/names.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/statement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/statement.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/statements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/statements.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/transformer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/transformer.lua -------------------------------------------------------------------------------- /vendor/moonscript/transform/value.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/transform/value.lua -------------------------------------------------------------------------------- /vendor/moonscript/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/types.lua -------------------------------------------------------------------------------- /vendor/moonscript/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/util.lua -------------------------------------------------------------------------------- /vendor/moonscript/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/moonscript/version.lua -------------------------------------------------------------------------------- /vendor/re.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/re.lua -------------------------------------------------------------------------------- /vendor/serpent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/serpent.lua -------------------------------------------------------------------------------- /vendor/syscall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall.lua -------------------------------------------------------------------------------- /vendor/syscall/abi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/abi.lua -------------------------------------------------------------------------------- /vendor/syscall/bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/bit.lua -------------------------------------------------------------------------------- /vendor/syscall/bsd/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/bsd/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/bsd/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/bsd/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/bsd/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/bsd/types.lua -------------------------------------------------------------------------------- /vendor/syscall/compat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/compat.lua -------------------------------------------------------------------------------- /vendor/syscall/ffitypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/ffitypes.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/c.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/errors.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/fcntl.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/sysctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/sysctl.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/types.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/util.lua -------------------------------------------------------------------------------- /vendor/syscall/freebsd/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/freebsd/version.lua -------------------------------------------------------------------------------- /vendor/syscall/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/helpers.lua -------------------------------------------------------------------------------- /vendor/syscall/lfs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/lfs.lua -------------------------------------------------------------------------------- /vendor/syscall/libc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/libc.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm64/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm64/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm64/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm64/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm64/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm64/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/arm64/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/arm64/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/c.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/cgroup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/cgroup.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/errors.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/fcntl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/mips/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/mips/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/mips/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/mips/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/mips/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/mips/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/mips/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/mips/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/mipsel: -------------------------------------------------------------------------------- 1 | mips -------------------------------------------------------------------------------- /vendor/syscall/linux/netfilter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/netfilter.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/nl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/nl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc64le/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc64le/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc64le/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc64le/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc64le/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc64le/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/ppc64le/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/ppc64le/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/sockopt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/sockopt.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/types.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/util.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x64/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x64/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x64/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x64/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x64/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x64/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x64/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x64/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x86/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x86/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x86/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x86/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x86/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x86/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/linux/x86/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/linux/x86/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/methods.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/methods.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/c.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/errors.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/fcntl.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/ffifunctions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/ffifunctions.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/ffitypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/ffitypes.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/init.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/nr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/nr.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/sysctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/sysctl.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/types.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/util.lua -------------------------------------------------------------------------------- /vendor/syscall/netbsd/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/netbsd/version.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/c.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/errors.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/fcntl.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/sysctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/sysctl.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/types.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/util.lua -------------------------------------------------------------------------------- /vendor/syscall/openbsd/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/openbsd/version.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/c.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/constants.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/errors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/errors.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/fcntl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/fcntl.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/ffi.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/ioctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/ioctl.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/sysctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/sysctl.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/types.lua -------------------------------------------------------------------------------- /vendor/syscall/osx/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/osx/util.lua -------------------------------------------------------------------------------- /vendor/syscall/rump/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/rump/c.lua -------------------------------------------------------------------------------- /vendor/syscall/rump/ffirump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/rump/ffirump.lua -------------------------------------------------------------------------------- /vendor/syscall/rump/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/rump/init.lua -------------------------------------------------------------------------------- /vendor/syscall/shared/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/shared/types.lua -------------------------------------------------------------------------------- /vendor/syscall/syscalls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/syscalls.lua -------------------------------------------------------------------------------- /vendor/syscall/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/types.lua -------------------------------------------------------------------------------- /vendor/syscall/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnae/spook/HEAD/vendor/syscall/util.lua --------------------------------------------------------------------------------