├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── README.md ├── deps.edn ├── project.clj ├── src └── juxt │ └── pull │ ├── core.cljc │ ├── core │ └── impl.cljc │ ├── protocol.cljc │ └── spec.cljc └── test └── juxt └── pull └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: clojure 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- 1 | {:deps {}} 2 | -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/project.clj -------------------------------------------------------------------------------- /src/juxt/pull/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/src/juxt/pull/core.cljc -------------------------------------------------------------------------------- /src/juxt/pull/core/impl.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/src/juxt/pull/core/impl.cljc -------------------------------------------------------------------------------- /src/juxt/pull/protocol.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/src/juxt/pull/protocol.cljc -------------------------------------------------------------------------------- /src/juxt/pull/spec.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/src/juxt/pull/spec.cljc -------------------------------------------------------------------------------- /test/juxt/pull/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/pull/HEAD/test/juxt/pull/core_test.clj --------------------------------------------------------------------------------