diff --git a/lib/httparrot/basic_auth_handler.ex b/lib/httparrot/basic_auth_handler.ex index fbb18b2..d738be1 100644 --- a/lib/httparrot/basic_auth_handler.ex +++ b/lib/httparrot/basic_auth_handler.ex @@ -1,4 +1,7 @@ defmodule HTTParrot.BasicAuthHandler do + @moduledoc """ + Challenges HTTPBasic Auth + """ def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/cookies_handler.ex b/lib/httparrot/cookies_handler.ex index 6d65f51..b78b8f4 100644 --- a/lib/httparrot/cookies_handler.ex +++ b/lib/httparrot/cookies_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.CookiesHandler do + @moduledoc """ + Returns cookie data. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/delete_cookies_handler.ex b/lib/httparrot/delete_cookies_handler.ex index 805bb64..dae3d86 100644 --- a/lib/httparrot/delete_cookies_handler.ex +++ b/lib/httparrot/delete_cookies_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.DeleteCookiesHandler do + @moduledoc """ + Deletes one or more simple cookies. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/delete_handler.ex b/lib/httparrot/delete_handler.ex index 343e483..a8cb213 100644 --- a/lib/httparrot/delete_handler.ex +++ b/lib/httparrot/delete_handler.ex @@ -1,4 +1,7 @@ defmodule HTTParrot.DeleteHandler do + @moduledoc """ + Returns DELETE data. + """ alias HTTParrot.GeneralRequestInfo def init(_transport, _req, _opts) do diff --git a/lib/httparrot/get_handler.ex b/lib/httparrot/get_handler.ex index 2dc56fc..981009a 100644 --- a/lib/httparrot/get_handler.ex +++ b/lib/httparrot/get_handler.ex @@ -1,4 +1,7 @@ defmodule HTTParrot.GetHandler do + @moduledoc """ + Returns GET data. + """ alias HTTParrot.GeneralRequestInfo def init(_transport, _req, _opts) do diff --git a/lib/httparrot/hidden_basic_auth_handler.ex b/lib/httparrot/hidden_basic_auth_handler.ex index 7d5675e..bfc26b5 100644 --- a/lib/httparrot/hidden_basic_auth_handler.ex +++ b/lib/httparrot/hidden_basic_auth_handler.ex @@ -1,4 +1,7 @@ defmodule HTTParrot.HiddenBasicAuthHandler do + @moduledoc """ + 404'd BasicAuth + """ def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/ip_handler.ex b/lib/httparrot/ip_handler.ex index bc3bb9f..0fb8f95 100644 --- a/lib/httparrot/ip_handler.ex +++ b/lib/httparrot/ip_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.IPHandler do + @moduledoc """ + Returns Origin IP + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/redirect_to_handler.ex b/lib/httparrot/redirect_to_handler.ex index 91907c9..d867a4e 100644 --- a/lib/httparrot/redirect_to_handler.ex +++ b/lib/httparrot/redirect_to_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.RedirectToHandler do + @moduledoc """ + Redirects to the foo URL. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/set_cookies_handler.ex b/lib/httparrot/set_cookies_handler.ex index 774b0c1..e407511 100644 --- a/lib/httparrot/set_cookies_handler.ex +++ b/lib/httparrot/set_cookies_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.SetCookiesHandler do + @moduledoc """ + Sets one or more simple cookies. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/status_code_handler.ex b/lib/httparrot/status_code_handler.ex index 9ab6660..75fae20 100644 --- a/lib/httparrot/status_code_handler.ex +++ b/lib/httparrot/status_code_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.StatusCodeHandler do + @moduledoc """ + Returns given HTTP Status code. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/user_agent_handler.ex b/lib/httparrot/user_agent_handler.ex index 8510c99..5e9645c 100644 --- a/lib/httparrot/user_agent_handler.ex +++ b/lib/httparrot/user_agent_handler.ex @@ -1,4 +1,8 @@ defmodule HTTParrot.UserAgentHandler do + @moduledoc """ + Returns user-agent. + """ + def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end