├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── deps.edn ├── dist └── latest │ └── index.html ├── docs └── content.adoc ├── project.clj ├── src └── urania │ └── core.cljc └── test └── urania ├── core_spec_test.cljc └── runner.cljs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- 1 | {:deps {funcool/promesa {:mvn/version "8.0.450"}} 2 | :paths ["src"]} 3 | -------------------------------------------------------------------------------- /dist/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/dist/latest/index.html -------------------------------------------------------------------------------- /docs/content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/docs/content.adoc -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/project.clj -------------------------------------------------------------------------------- /src/urania/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/src/urania/core.cljc -------------------------------------------------------------------------------- /test/urania/core_spec_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/test/urania/core_spec_test.cljc -------------------------------------------------------------------------------- /test/urania/runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/urania/HEAD/test/urania/runner.cljs --------------------------------------------------------------------------------