returns nil if any of the patterns matches it’s URI, the document itself otherwise
[Source]
# File lib/rdig/url_filters.rb, line 104 104: def apply(document) 105: return document unless @patterns 106: @patterns.each { |p| 107: return nil if document.uri.to_s =~ p 108: } 109: return document 110: end
[Validate]