class SimpleCov::ArrayFilter

def matches?(source_files_list)

Configure this Filter like StringFilter.new(['some/path', /^some_regex/, Proc.new {|src_file| ... }])
Returns true if any of the filters in the array match the given source file.
def matches?(source_files_list)
  filter_argument.any? do |arg|
    arg.matches?(source_files_list)
  end
end