method

watched

watched()
private

No documentation available.

# File activesupport/lib/active_support/file_update_checker.rb, line 93
    def watched
      @watched || begin
        all = @files.select { |f| File.exist?(f) }
        all.concat(Dir[@glob]) if @glob
        all
      end
    end