returns the document if any of the patterns matches it’s URI, nil otherwise
[Source]
# File lib/rdig/url_filters.rb, line 115 115: def apply(document) 116: return document unless @patterns 117: @patterns.each { |p| 118: return document if document.uri.to_s =~ p 119: } 120: return nil 121: end
[Validate]