From ec82e3548b2cd111b270d0355c5a42a9b1f492a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 14 Jan 2016 22:58:22 +0100 Subject: Simplify specifying the Cowboy version in examples --- examples/chunked_hello_world/Makefile | 2 +- examples/compress_response/Makefile | 2 +- examples/cookie/Makefile | 2 +- examples/echo_get/Makefile | 2 +- examples/echo_post/Makefile | 2 +- examples/error_hook/Makefile | 2 +- examples/eventsource/Makefile | 2 +- examples/hello_world/Makefile | 2 +- examples/markdown_middleware/Makefile | 2 +- examples/rest_basic_auth/Makefile | 2 +- examples/rest_hello_world/Makefile | 2 +- examples/rest_pastebin/Makefile | 2 +- examples/rest_stream_response/Makefile | 2 +- examples/ssl_hello_world/Makefile | 2 +- examples/static_world/Makefile | 2 +- examples/upload/Makefile | 2 +- examples/web_server/Makefile | 2 +- examples/websocket/Makefile | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/examples/chunked_hello_world/Makefile b/examples/chunked_hello_world/Makefile index 00ac80d..7e14a82 100644 --- a/examples/chunked_hello_world/Makefile +++ b/examples/chunked_hello_world/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy chunked Hello World example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/compress_response/Makefile b/examples/compress_response/Makefile index ab99ced..8eab604 100644 --- a/examples/compress_response/Makefile +++ b/examples/compress_response/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy compressed response example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/cookie/Makefile b/examples/cookie/Makefile index f4e593b..563cd87 100644 --- a/examples/cookie/Makefile +++ b/examples/cookie/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy Cookie example PROJECT_VERSION = 1 DEPS = cowboy erlydtl -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/echo_get/Makefile b/examples/echo_get/Makefile index 8f5eea8..6332d4b 100644 --- a/examples/echo_get/Makefile +++ b/examples/echo_get/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy GET echo example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/echo_post/Makefile b/examples/echo_post/Makefile index 3b3c3ba..c1d64fe 100644 --- a/examples/echo_post/Makefile +++ b/examples/echo_post/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy POST echo example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/error_hook/Makefile b/examples/error_hook/Makefile index 17fe836..cfd6748 100644 --- a/examples/error_hook/Makefile +++ b/examples/error_hook/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy error handler example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/eventsource/Makefile b/examples/eventsource/Makefile index a2e6962..1b67b8e 100644 --- a/examples/eventsource/Makefile +++ b/examples/eventsource/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy EventSource example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile index 85ef7ed..c410b09 100644 --- a/examples/hello_world/Makefile +++ b/examples/hello_world/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy Hello World example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/markdown_middleware/Makefile b/examples/markdown_middleware/Makefile index 2087cf3..ccbd3c2 100644 --- a/examples/markdown_middleware/Makefile +++ b/examples/markdown_middleware/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy static file handler example with middleware compone PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/rest_basic_auth/Makefile b/examples/rest_basic_auth/Makefile index 174eacc..dc7bd5c 100644 --- a/examples/rest_basic_auth/Makefile +++ b/examples/rest_basic_auth/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy Basic HTTP Authorization example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/rest_hello_world/Makefile b/examples/rest_hello_world/Makefile index d32551b..3452a44 100644 --- a/examples/rest_hello_world/Makefile +++ b/examples/rest_hello_world/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy REST Hello World example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/rest_pastebin/Makefile b/examples/rest_pastebin/Makefile index 5c7a315..994f4a4 100644 --- a/examples/rest_pastebin/Makefile +++ b/examples/rest_pastebin/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy REST Pastebin example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/rest_stream_response/Makefile b/examples/rest_stream_response/Makefile index 5de48d4..65858e6 100644 --- a/examples/rest_stream_response/Makefile +++ b/examples/rest_stream_response/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy REST example with streaming PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/ssl_hello_world/Makefile b/examples/ssl_hello_world/Makefile index c12fdcc..34c3201 100644 --- a/examples/ssl_hello_world/Makefile +++ b/examples/ssl_hello_world/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy SSL Hello World example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/static_world/Makefile b/examples/static_world/Makefile index 47c1094..cbce76c 100644 --- a/examples/static_world/Makefile +++ b/examples/static_world/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy static file handler example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/upload/Makefile b/examples/upload/Makefile index 2caea71..af39f92 100644 --- a/examples/upload/Makefile +++ b/examples/upload/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy multipart upload example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/web_server/Makefile b/examples/web_server/Makefile index 749a69d..34ec805 100644 --- a/examples/web_server/Makefile +++ b/examples/web_server/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy static directory indexing example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk diff --git a/examples/websocket/Makefile b/examples/websocket/Makefile index 60059f8..955cd52 100644 --- a/examples/websocket/Makefile +++ b/examples/websocket/Makefile @@ -3,6 +3,6 @@ PROJECT_DESCRIPTION = Cowboy Websocket example PROJECT_VERSION = 1 DEPS = cowboy -dep_cowboy = git https://github.com/ninenines/cowboy master +dep_cowboy_commit = master include ../../erlang.mk -- cgit v1.2.3