class Covered::Skip

def initialize(output, pattern)

def initialize(output, pattern)
	super(output)
	
	@pattern = pattern
end

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

def match? path

def match? path
	!(@pattern =~ path)
end