# File lib/guard/watcher.rb, line 71 def self.match_files?(guards, files) guards.any? do |guard| guard.watchers.any? do |watcher| files.any? { |file| watcher.match(file) } end end end