├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── UNLICENSE ├── VERSION ├── rebar.config ├── rebar.lock ├── rebar3 ├── src ├── poolboy.app.src ├── poolboy.erl ├── poolboy_sup.erl └── poolboy_worker.erl └── test ├── poolboy_eqc.erl ├── poolboy_test_worker.erl └── poolboy_tests.erl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .eunit 2 | .rebar 3 | _build 4 | ebin 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5.1 2 | -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /rebar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/rebar3 -------------------------------------------------------------------------------- /src/poolboy.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/src/poolboy.app.src -------------------------------------------------------------------------------- /src/poolboy.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/src/poolboy.erl -------------------------------------------------------------------------------- /src/poolboy_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/src/poolboy_sup.erl -------------------------------------------------------------------------------- /src/poolboy_worker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/src/poolboy_worker.erl -------------------------------------------------------------------------------- /test/poolboy_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/test/poolboy_eqc.erl -------------------------------------------------------------------------------- /test/poolboy_test_worker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/test/poolboy_test_worker.erl -------------------------------------------------------------------------------- /test/poolboy_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinus/poolboy/HEAD/test/poolboy_tests.erl --------------------------------------------------------------------------------