├── .gitattributes ├── .github └── workflows │ └── erlang.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── elvis.config ├── erlang.mk ├── rebar.config ├── rebar.config.script ├── rebar.lock ├── restc.d ├── src ├── restc.app.src ├── restc.erl ├── restc_body.erl └── restc_util.erl └── test ├── mochiweb_util.erl ├── prop_restc.erl ├── prop_restc_body.erl └── restc_SUITE.erl /.gitattributes: -------------------------------------------------------------------------------- 1 | erlang.mk -diff -------------------------------------------------------------------------------- /.github/workflows/erlang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/.github/workflows/erlang.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/README.md -------------------------------------------------------------------------------- /elvis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/elvis.config -------------------------------------------------------------------------------- /erlang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/erlang.mk -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.config.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/rebar.config.script -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/rebar.lock -------------------------------------------------------------------------------- /restc.d: -------------------------------------------------------------------------------- 1 | 2 | COMPILE_FIRST += 3 | -------------------------------------------------------------------------------- /src/restc.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/src/restc.app.src -------------------------------------------------------------------------------- /src/restc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/src/restc.erl -------------------------------------------------------------------------------- /src/restc_body.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/src/restc_body.erl -------------------------------------------------------------------------------- /src/restc_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/src/restc_util.erl -------------------------------------------------------------------------------- /test/mochiweb_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/test/mochiweb_util.erl -------------------------------------------------------------------------------- /test/prop_restc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/test/prop_restc.erl -------------------------------------------------------------------------------- /test/prop_restc_body.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/test/prop_restc_body.erl -------------------------------------------------------------------------------- /test/restc_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivra/restclient/HEAD/test/restc_SUITE.erl --------------------------------------------------------------------------------