diff --git a/examples/chunked_hello_world/src/chunked_hello_world.app.src b/examples/chunked_hello_world/src/chunked_hello_world.app.src index 1a6c03bb..3bd75566 100644 --- a/examples/chunked_hello_world/src/chunked_hello_world.app.src +++ b/examples/chunked_hello_world/src/chunked_hello_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Chunked Hello World example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [chunked_hello_world_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/compress_response/src/compress_response.app.src b/examples/compress_response/src/compress_response.app.src index 35120840..2f11ef10 100644 --- a/examples/compress_response/src/compress_response.app.src +++ b/examples/compress_response/src/compress_response.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Compress Response example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [compress_response_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/cookie/src/cookie.app.src b/examples/cookie/src/cookie.app.src index b7098f0e..192d9074 100644 --- a/examples/cookie/src/cookie.app.src +++ b/examples/cookie/src/cookie.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Cookie example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [cookie_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/echo_get/src/echo_get.app.src b/examples/echo_get/src/echo_get.app.src index ecbf01a2..fd5646c0 100644 --- a/examples/echo_get/src/echo_get.app.src +++ b/examples/echo_get/src/echo_get.app.src @@ -4,7 +4,7 @@ {description, "Cowboy GET echo example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [echo_get_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/echo_post/src/echo_post.app.src b/examples/echo_post/src/echo_post.app.src index 74ff7f39..92c71ff4 100644 --- a/examples/echo_post/src/echo_post.app.src +++ b/examples/echo_post/src/echo_post.app.src @@ -4,7 +4,7 @@ {description, "Cowboy POST echo example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [echo_post_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/error_hook/src/error_hook.app.src b/examples/error_hook/src/error_hook.app.src index 80a1f2bb..728fd352 100644 --- a/examples/error_hook/src/error_hook.app.src +++ b/examples/error_hook/src/error_hook.app.src @@ -4,7 +4,7 @@ {description, "Cowboy error handler example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [error_hook_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/eventsource/src/eventsource.app.src b/examples/eventsource/src/eventsource.app.src index 002ea85e..50181685 100644 --- a/examples/eventsource/src/eventsource.app.src +++ b/examples/eventsource/src/eventsource.app.src @@ -4,7 +4,7 @@ {description, "Cowboy EventSource example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [eventsource_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/hello_world/src/hello_world.app.src b/examples/hello_world/src/hello_world.app.src index eeab8354..7512a2f4 100644 --- a/examples/hello_world/src/hello_world.app.src +++ b/examples/hello_world/src/hello_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Hello World example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [hello_world_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/markdown_middleware/src/markdown_middleware.app.src b/examples/markdown_middleware/src/markdown_middleware.app.src index d5823998..56f26afe 100644 --- a/examples/markdown_middleware/src/markdown_middleware.app.src +++ b/examples/markdown_middleware/src/markdown_middleware.app.src @@ -4,7 +4,7 @@ {description, "Cowboy static file handler example with middleware component."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [markdown_middleware_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/rest_basic_auth/src/rest_basic_auth.app.src b/examples/rest_basic_auth/src/rest_basic_auth.app.src index d715b6a0..c5f836b4 100644 --- a/examples/rest_basic_auth/src/rest_basic_auth.app.src +++ b/examples/rest_basic_auth/src/rest_basic_auth.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Basic HTTP Authorization example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [rest_basic_auth_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/rest_hello_world/src/rest_hello_world.app.src b/examples/rest_hello_world/src/rest_hello_world.app.src index 81446bd6..0c786e88 100644 --- a/examples/rest_hello_world/src/rest_hello_world.app.src +++ b/examples/rest_hello_world/src/rest_hello_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy REST Hello World example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [rest_hello_world_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/rest_pastebin/src/rest_pastebin.app.src b/examples/rest_pastebin/src/rest_pastebin.app.src index 7701ebe7..aae6146c 100644 --- a/examples/rest_pastebin/src/rest_pastebin.app.src +++ b/examples/rest_pastebin/src/rest_pastebin.app.src @@ -4,7 +4,7 @@ {description, "Cowboy REST Pastebin example inspired by sprunge."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [rest_pastebin_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/rest_stream_response/src/rest_stream_response.app.src b/examples/rest_stream_response/src/rest_stream_response.app.src index 4a458b87..bf734ab5 100644 --- a/examples/rest_stream_response/src/rest_stream_response.app.src +++ b/examples/rest_stream_response/src/rest_stream_response.app.src @@ -4,7 +4,7 @@ {description, "Cowboy REST with streaming."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [rest_stream_response_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/ssl_hello_world/src/ssl_hello_world.app.src b/examples/ssl_hello_world/src/ssl_hello_world.app.src index d628b68a..30faecbc 100644 --- a/examples/ssl_hello_world/src/ssl_hello_world.app.src +++ b/examples/ssl_hello_world/src/ssl_hello_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy Hello World example with SSL."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [ssl_hello_world_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/static_world/src/static_world.app.src b/examples/static_world/src/static_world.app.src index b65995d5..879801da 100644 --- a/examples/static_world/src/static_world.app.src +++ b/examples/static_world/src/static_world.app.src @@ -4,7 +4,7 @@ {description, "Cowboy static file handler example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [static_world_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/web_server/src/web_server.app.src b/examples/web_server/src/web_server.app.src index b4326d7b..f5034229 100644 --- a/examples/web_server/src/web_server.app.src +++ b/examples/web_server/src/web_server.app.src @@ -4,7 +4,7 @@ {description, "Cowboy static file handler with directory indexes."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [web_server_sup]}, {applications, [ kernel, stdlib, diff --git a/examples/websocket/src/websocket.app.src b/examples/websocket/src/websocket.app.src index 4fa4f785..c6ada82e 100644 --- a/examples/websocket/src/websocket.app.src +++ b/examples/websocket/src/websocket.app.src @@ -4,7 +4,7 @@ {description, "Cowboy websocket example."}, {vsn, "1"}, {modules, []}, - {registered, []}, + {registered, [websocket_sup]}, {applications, [ kernel, stdlib,