method
watched
v8.1.1 -
Show latest stable
- Class:
ActiveSupport::FileUpdateChecker
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