method

watched

watched()
private

No documentation available.

# File activesupport/lib/active_support/file_update_checker.rb, line 106
      def watched
        @watched || begin
          all = @files.select { |f| File.exist?(f) }
          all.concat(Dir[*@globs]) if @globs
          all.tap(&:uniq!)
        end
      end