├── .gitignore ├── LICENSE ├── README.md ├── project.clj ├── src ├── data_readers.clj └── immuconf │ └── config.clj └── test ├── fixtures ├── test-a.edn ├── test-a2.edn ├── test-b.edn ├── test-d.edn └── test-o.edn └── immuconf └── config_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/project.clj -------------------------------------------------------------------------------- /src/data_readers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/src/data_readers.clj -------------------------------------------------------------------------------- /src/immuconf/config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/src/immuconf/config.clj -------------------------------------------------------------------------------- /test/fixtures/test-a.edn: -------------------------------------------------------------------------------- 1 | {:a {:b {:c 1}}} 2 | -------------------------------------------------------------------------------- /test/fixtures/test-a2.edn: -------------------------------------------------------------------------------- 1 | {:a {:b {:c 2}}} 2 | -------------------------------------------------------------------------------- /test/fixtures/test-b.edn: -------------------------------------------------------------------------------- 1 | {:a {:b {:d 2}}} 2 | -------------------------------------------------------------------------------- /test/fixtures/test-d.edn: -------------------------------------------------------------------------------- 1 | {:a {:b {:c #immuconf/default 42}}} 2 | -------------------------------------------------------------------------------- /test/fixtures/test-o.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/test/fixtures/test-o.edn -------------------------------------------------------------------------------- /test/immuconf/config_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/immuconf/HEAD/test/immuconf/config_test.clj --------------------------------------------------------------------------------