├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config └── config.exs ├── lib └── plug_response_header.ex ├── mix.exs └── test ├── plug_response_header_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | mix.lock 4 | erl_crash.dump 5 | *.ez 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/plug_response_header.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/lib/plug_response_header.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/mix.exs -------------------------------------------------------------------------------- /test/plug_response_header_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-rack/plug_response_header/HEAD/test/plug_response_header_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------