class SimpleCov::StringFilter

def passes?(source_file)

string configured when initializing this Filter with StringFilter.new('somestring)
Returns true when the given source file's filename matches the
def passes?(source_file)
  !(source_file.filename =~ /#{filter_argument}/)
end