class Build::Files::Glob

def include?(path)

@returns [Boolean] True if the path matches the pattern.
@parameter path [Path] The path to check.
Check if a path matches this glob pattern.
def include?(path)
	File.fnmatch(full_pattern, path)
end