Class: SimpleCov::ArrayFilter

Inherits:
Filter
  • Object
show all
Defined in:
lib/simplecov/filter.rb

Instance Attribute Summary

Attributes inherited from Filter

#filter_argument

Instance Method Summary collapse

Methods inherited from Filter

build_filter, class_for_argument, #passes?

Constructor Details

#initialize(filter_argument) ⇒ ArrayFilter

Returns a new instance of ArrayFilter.



78
79
80
81
82
83
84
# File 'lib/simplecov/filter.rb', line 78

def initialize(filter_argument)
  filter_objects = filter_argument.map do |arg|
    Filter.build_filter(arg)
  end

  super(filter_objects)
end

Instance Method Details

#matches?(source_files_list) ⇒ Boolean

Returns true if any of the filters in the array match the given source file. Configure this Filter like StringFilter.new([‘some/path’, /^some_regex/, Proc.new {|src_file| … }])

Returns:

  • (Boolean)


88
89
90
91
92
# File 'lib/simplecov/filter.rb', line 88

def matches?(source_files_list)
  filter_argument.any? do |arg|
    arg.matches?(source_files_list)
  end
end