Method: FilterNonMatches#filter

Defined in:
lib/filters.rb

#filter(path, file) ⇒ Object



60
61
62
63
64
65
66
# File 'lib/filters.rb', line 60

def filter(path, file)
  if @regexp =~ text(path, file)
    next_filter(path, file)
  else
    false
  end
end