From 18f50b869702c731324a3c47381ab1e0f3abb7f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 3 Oct 2014 16:28:02 +0300 Subject: [PATCH] Make examples use Cowboy master --- examples/chunked_hello_world/Makefile | 1 + examples/compress_response/Makefile | 1 + examples/cookie/Makefile | 1 + examples/echo_get/Makefile | 1 + examples/echo_post/Makefile | 1 + examples/error_hook/Makefile | 1 + examples/eventsource/Makefile | 1 + examples/hello_world/Makefile | 1 + examples/markdown_middleware/Makefile | 1 + examples/rest_basic_auth/Makefile | 1 + examples/rest_hello_world/Makefile | 1 + examples/rest_pastebin/Makefile | 1 + examples/rest_stream_response/Makefile | 1 + examples/ssl_hello_world/Makefile | 1 + examples/static_world/Makefile | 1 + examples/upload/Makefile | 1 + examples/web_server/Makefile | 1 + examples/websocket/Makefile | 1 + 18 files changed, 18 insertions(+) diff --git a/examples/chunked_hello_world/Makefile b/examples/chunked_hello_world/Makefile index e535e1c4..38cd6dc0 100644 --- a/examples/chunked_hello_world/Makefile +++ b/examples/chunked_hello_world/Makefile @@ -1,3 +1,4 @@ PROJECT = chunked_hello_world DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/compress_response/Makefile b/examples/compress_response/Makefile index 6b52fbe0..4d3649f6 100644 --- a/examples/compress_response/Makefile +++ b/examples/compress_response/Makefile @@ -1,3 +1,4 @@ PROJECT = compress_response DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/cookie/Makefile b/examples/cookie/Makefile index 1895823d..4fc8fb9f 100644 --- a/examples/cookie/Makefile +++ b/examples/cookie/Makefile @@ -1,3 +1,4 @@ PROJECT = cookie DEPS = cowboy erlydtl +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/echo_get/Makefile b/examples/echo_get/Makefile index c3c3b302..6c7790ec 100644 --- a/examples/echo_get/Makefile +++ b/examples/echo_get/Makefile @@ -1,3 +1,4 @@ PROJECT = echo_get DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/echo_post/Makefile b/examples/echo_post/Makefile index bddaf0e8..ddf39697 100644 --- a/examples/echo_post/Makefile +++ b/examples/echo_post/Makefile @@ -1,3 +1,4 @@ PROJECT = echo_post DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/error_hook/Makefile b/examples/error_hook/Makefile index 575e9194..73242dfa 100644 --- a/examples/error_hook/Makefile +++ b/examples/error_hook/Makefile @@ -1,3 +1,4 @@ PROJECT = error_hook DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/eventsource/Makefile b/examples/eventsource/Makefile index fd304d75..fbd3fb90 100644 --- a/examples/eventsource/Makefile +++ b/examples/eventsource/Makefile @@ -1,3 +1,4 @@ PROJECT = eventsource DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile index 72e0f881..1a7000b0 100644 --- a/examples/hello_world/Makefile +++ b/examples/hello_world/Makefile @@ -1,3 +1,4 @@ PROJECT = hello_world DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/markdown_middleware/Makefile b/examples/markdown_middleware/Makefile index a46ae68d..ab2fbd63 100644 --- a/examples/markdown_middleware/Makefile +++ b/examples/markdown_middleware/Makefile @@ -1,3 +1,4 @@ PROJECT = markdown_middleware DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/rest_basic_auth/Makefile b/examples/rest_basic_auth/Makefile index dbc9450e..b776235c 100644 --- a/examples/rest_basic_auth/Makefile +++ b/examples/rest_basic_auth/Makefile @@ -1,3 +1,4 @@ PROJECT = rest_basic_auth DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/rest_hello_world/Makefile b/examples/rest_hello_world/Makefile index 7bb3b1ed..cc7699ed 100644 --- a/examples/rest_hello_world/Makefile +++ b/examples/rest_hello_world/Makefile @@ -1,3 +1,4 @@ PROJECT = rest_hello_world DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/rest_pastebin/Makefile b/examples/rest_pastebin/Makefile index 1914bea9..66c7b33a 100644 --- a/examples/rest_pastebin/Makefile +++ b/examples/rest_pastebin/Makefile @@ -1,3 +1,4 @@ PROJECT = rest_pastebin DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/rest_stream_response/Makefile b/examples/rest_stream_response/Makefile index c49d7d18..86aa2f50 100644 --- a/examples/rest_stream_response/Makefile +++ b/examples/rest_stream_response/Makefile @@ -1,3 +1,4 @@ PROJECT = rest_stream_response DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/ssl_hello_world/Makefile b/examples/ssl_hello_world/Makefile index 079817e8..720f9987 100644 --- a/examples/ssl_hello_world/Makefile +++ b/examples/ssl_hello_world/Makefile @@ -1,3 +1,4 @@ PROJECT = ssl_hello_world DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/static_world/Makefile b/examples/static_world/Makefile index eab221d1..7524b779 100644 --- a/examples/static_world/Makefile +++ b/examples/static_world/Makefile @@ -1,3 +1,4 @@ PROJECT = static_world DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/upload/Makefile b/examples/upload/Makefile index e92ca825..ca6b0c68 100644 --- a/examples/upload/Makefile +++ b/examples/upload/Makefile @@ -1,3 +1,4 @@ PROJECT = upload DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/web_server/Makefile b/examples/web_server/Makefile index 7ff724f2..b794f30e 100644 --- a/examples/web_server/Makefile +++ b/examples/web_server/Makefile @@ -1,3 +1,4 @@ PROJECT = web_server DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk diff --git a/examples/websocket/Makefile b/examples/websocket/Makefile index 81fd93bd..b590e793 100644 --- a/examples/websocket/Makefile +++ b/examples/websocket/Makefile @@ -1,3 +1,4 @@ PROJECT = websocket DEPS = cowboy +dep_cowboy = git https://github.com/ninenines/cowboy master include ../../erlang.mk