method
watching?
v6.0.0 -
Show latest stable
- Class:
ActiveSupport::EventedFileUpdateChecker
watching?(file)private
No documentation available.
# File activesupport/lib/active_support/evented_file_update_checker.rb, line 133
def watching?(file)
file = @ph.xpath(file)
if @files.member?(file)
true
elsif file.directory?
false
else
ext = @ph.normalize_extension(file.extname)
file.dirname.ascend do |dir|
matching = @dirs[dir]
if matching && (matching.empty? || matching.include?(ext))
break true
elsif dir == @lcsp || dir.root?
break false
end
end
end
end