method
watched
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::FileUpdateChecker
watched()private
No documentation available.
# File activesupport/lib/active_support/file_update_checker.rb, line 103
def watched
@watched || begin
all = @files.select { |f| File.exist?(f) }
all.concat(Dir[@glob]) if @glob
all
end
end