├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── circle.yml ├── commandeer.nim ├── commandeer.nimble ├── runTests.nim └── tests ├── nim.cfg ├── testBasics.nim ├── testDefaultValues.nim ├── testErrors.nim ├── testMultiple.nim ├── testOptionalMultiple.nim ├── testSpace.nim ├── testSubCommands.nim └── tests.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/circle.yml -------------------------------------------------------------------------------- /commandeer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/commandeer.nim -------------------------------------------------------------------------------- /commandeer.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/commandeer.nimble -------------------------------------------------------------------------------- /runTests.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/runTests.nim -------------------------------------------------------------------------------- /tests/nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/nim.cfg -------------------------------------------------------------------------------- /tests/testBasics.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testBasics.nim -------------------------------------------------------------------------------- /tests/testDefaultValues.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testDefaultValues.nim -------------------------------------------------------------------------------- /tests/testErrors.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testErrors.nim -------------------------------------------------------------------------------- /tests/testMultiple.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testMultiple.nim -------------------------------------------------------------------------------- /tests/testOptionalMultiple.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testOptionalMultiple.nim -------------------------------------------------------------------------------- /tests/testSpace.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testSpace.nim -------------------------------------------------------------------------------- /tests/testSubCommands.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/testSubCommands.nim -------------------------------------------------------------------------------- /tests/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenekku/commandeer/HEAD/tests/tests.json --------------------------------------------------------------------------------