fix Middleman::Util.path_match to work with string matchers
This commit is contained in:
parent
6e44851069
commit
b084982923
|
@ -90,7 +90,9 @@ module Middleman
|
|||
# @param path A path as a string
|
||||
# @return [Boolean] Whether the path matches the matcher
|
||||
def self.path_match(matcher, path)
|
||||
if matcher.respond_to? :match
|
||||
if matcher.is_a? String
|
||||
path.match matcher
|
||||
elsif matcher.respond_to? :match
|
||||
matcher.match path
|
||||
elsif matcher.respond_to? :call
|
||||
matcher.call path
|
||||
|
|
Loading…
Reference in a new issue