├── .gitignore ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config-local.edn ├── project.clj ├── scripts └── build-docs.sh ├── src └── maailma │ └── core.clj ├── test-resources ├── config-defaults.edn └── config-readers.edn └── test └── maailma └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- 1 | .nrepl* 2 | target 3 | .lein* 4 | doc 5 | pom.xml* 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/README.md -------------------------------------------------------------------------------- /config-local.edn: -------------------------------------------------------------------------------- 1 | {:local true} 2 | -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/project.clj -------------------------------------------------------------------------------- /scripts/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/scripts/build-docs.sh -------------------------------------------------------------------------------- /src/maailma/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/src/maailma/core.clj -------------------------------------------------------------------------------- /test-resources/config-defaults.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/test-resources/config-defaults.edn -------------------------------------------------------------------------------- /test-resources/config-readers.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/test-resources/config-readers.edn -------------------------------------------------------------------------------- /test/maailma/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/maailma/HEAD/test/maailma/core_test.clj --------------------------------------------------------------------------------