Class: Covered::Skip

Inherits:
Filter show all
Defined in:
lib/covered/files.rb

Instance Attribute Summary collapse

Attributes inherited from Wrapper

#output

Instance Method Summary collapse

Methods inherited from Filter

#accept?, #each, #mark

Methods inherited from Wrapper

#accept?, #add, #clear, #each, #expand_path, #finish, #mark, #relative_path, #start, #to_h

Methods inherited from Base

#accept?, #add, #clear, #each, #expand_path, #finish, #mark, #relative_path, #start

Constructor Details

#initialize(output, pattern) ⇒ Skip

Returns a new instance of Skip.



94
95
96
97
98
# File 'lib/covered/files.rb', line 94

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

Instance Attribute Details

#patternObject (readonly)

Returns the value of attribute pattern.



100
101
102
# File 'lib/covered/files.rb', line 100

def pattern
  @pattern
end

Instance Method Details

#match?(path) ⇒ Boolean

This is better as it doesn’t allocate a MatchData instance which is essentially useless.

Returns:

  • (Boolean)


104
105
106
# File 'lib/covered/files.rb', line 104

def match? path
	!@pattern.match?(path)
end