class Middleman::Sitemap::Extensions::Ignores::IgnoreManager

def ignored?(path)

Returns:
  • (Boolean) -

Parameters:
  • path (String) --
def ignored?(path)
  path_clean = ::Middleman::Util.normalize_path(path)
  @ignored_callbacks.any? { |b| b.call(path_clean) }
end