├── .github └── workflows │ ├── clojure.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── deps.edn ├── dev └── user.clj ├── project.clj ├── src └── ring │ ├── middleware │ └── http_response.clj │ └── util │ ├── http_predicates.clj │ ├── http_predicates.cljs │ ├── http_response.clj │ ├── http_status.clj │ └── http_status.cljs ├── templates ├── http-predicates.mustache ├── http-response.mustache └── http-status.mustache └── test └── ring ├── middleware └── http_response_test.clj └── util ├── http_predicates_test.clj ├── http_response_test.clj └── http_status_test.clj /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/.github/workflows/clojure.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/dev/user.clj -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/project.clj -------------------------------------------------------------------------------- /src/ring/middleware/http_response.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/middleware/http_response.clj -------------------------------------------------------------------------------- /src/ring/util/http_predicates.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/util/http_predicates.clj -------------------------------------------------------------------------------- /src/ring/util/http_predicates.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/util/http_predicates.cljs -------------------------------------------------------------------------------- /src/ring/util/http_response.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/util/http_response.clj -------------------------------------------------------------------------------- /src/ring/util/http_status.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/util/http_status.clj -------------------------------------------------------------------------------- /src/ring/util/http_status.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/src/ring/util/http_status.cljs -------------------------------------------------------------------------------- /templates/http-predicates.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/templates/http-predicates.mustache -------------------------------------------------------------------------------- /templates/http-response.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/templates/http-response.mustache -------------------------------------------------------------------------------- /templates/http-status.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/templates/http-status.mustache -------------------------------------------------------------------------------- /test/ring/middleware/http_response_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/test/ring/middleware/http_response_test.clj -------------------------------------------------------------------------------- /test/ring/util/http_predicates_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/test/ring/util/http_predicates_test.clj -------------------------------------------------------------------------------- /test/ring/util/http_response_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/test/ring/util/http_response_test.clj -------------------------------------------------------------------------------- /test/ring/util/http_status_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metosin/ring-http-response/HEAD/test/ring/util/http_status_test.clj --------------------------------------------------------------------------------