├── .formatter.exs ├── .gitignore ├── README.md ├── config └── config.exs ├── lib └── ranch_connection_drainer.ex ├── mix.exs ├── mix.lock └── test ├── ranch_connection_drainer_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/ranch_connection_drainer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/lib/ranch_connection_drainer.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/mix.lock -------------------------------------------------------------------------------- /test/ranch_connection_drainer_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekkraan/ranch_connection_drainer/HEAD/test/ranch_connection_drainer_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------