├── .clj-kondo └── config.edn ├── .editorconfig ├── .envrc ├── .gitignore ├── .idea └── clojure-deps.xml ├── .travis.yml ├── CHANGELOG.adoc ├── LICENSE ├── Makefile ├── README.adoc ├── context-idea.png ├── deps.edn ├── dev └── src │ └── user.clj ├── pbuild.edn ├── resources └── readme.txt ├── src └── org │ └── rssys │ └── context │ ├── core.clj │ └── helpers.clj ├── test └── org │ └── rssys │ └── context │ ├── core_test.clj │ └── helpers_test.clj └── tests.edn /.clj-kondo/config.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/clojure-deps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/.idea/clojure-deps.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/README.adoc -------------------------------------------------------------------------------- /context-idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/context-idea.png -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/deps.edn -------------------------------------------------------------------------------- /dev/src/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/dev/src/user.clj -------------------------------------------------------------------------------- /pbuild.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/pbuild.edn -------------------------------------------------------------------------------- /resources/readme.txt: -------------------------------------------------------------------------------- 1 | put your resources in this folder. 2 | -------------------------------------------------------------------------------- /src/org/rssys/context/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/src/org/rssys/context/core.clj -------------------------------------------------------------------------------- /src/org/rssys/context/helpers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/src/org/rssys/context/helpers.clj -------------------------------------------------------------------------------- /test/org/rssys/context/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/test/org/rssys/context/core_test.clj -------------------------------------------------------------------------------- /test/org/rssys/context/helpers_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/test/org/rssys/context/helpers_test.clj -------------------------------------------------------------------------------- /tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redstarssystems/context/HEAD/tests.edn --------------------------------------------------------------------------------