class SimpleCov::StringFilter

def matches?(source_file)

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