path_starts_with... method naming (#310)

Fix name of path_starts_with_... utility method
This commit is contained in:
Tom Richards 2017-02-15 12:38:26 -05:00 committed by Serdar Dogruyol
parent 9607083e59
commit 54e501e964
2 changed files with 3 additions and 3 deletions

View File

@ -9,13 +9,13 @@ FILTER_METHODS = %w(get post put patch delete options all)
{% for method in HTTP_METHODS %}
def {{method.id}}(path, &block : HTTP::Server::Context -> _)
raise Kemal::Exceptions::InvalidPathStartException.new({{method}}, path) unless Kemal::Utils.path_starts_with_backslash?(path)
raise Kemal::Exceptions::InvalidPathStartException.new({{method}}, path) unless Kemal::Utils.path_starts_with_slash?(path)
Kemal::RouteHandler::INSTANCE.add_route({{method}}.upcase, path, &block)
end
{% end %}
def ws(path, &block : HTTP::WebSocket, HTTP::Server::Context -> Void)
raise Kemal::Exceptions::InvalidPathStartException.new("ws", path) unless Kemal::Utils.path_starts_with_backslash?(path)
raise Kemal::Exceptions::InvalidPathStartException.new("ws", path) unless Kemal::Utils.path_starts_with_slash?(path)
Kemal::WebSocketHandler.new path, &block
end

View File

@ -1,6 +1,6 @@
module Kemal
module Utils
def self.path_starts_with_backslash?(path)
def self.path_starts_with_slash?(path)
path.starts_with?("/")
end