class Middleman::Sitemap::Extensions::Ignores::GlobIgnoreDescriptor

def ignored?(match_path)

def ignored?(match_path)
  if defined?(::File::FNM_EXTGLOB)
    ::File.fnmatch(path, match_path, ::File::FNM_EXTGLOB)
  else
    ::File.fnmatch(path, match_path)
  end
end