class Covered::Skip

def match? path

This is better as it doesn't allocate a MatchData instance which is essentially useless.
def match? path
	!@pattern.match?(path)
end