├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── gara.nimble ├── src └── gara.nim └── tests ├── config.nims └── test_gara.nim /.gitignore: -------------------------------------------------------------------------------- 1 | tests/test_gara -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/README.md -------------------------------------------------------------------------------- /gara.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/gara.nimble -------------------------------------------------------------------------------- /src/gara.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/src/gara.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/test_gara.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alehander92/gara/HEAD/tests/test_gara.nim --------------------------------------------------------------------------------