method
layout_directory_exists_cache
layout_directory_exists_cache()
private
Hide source
# File actionpack/lib/action_controller/layout.rb, line 211 def layout_directory_exists_cache @@layout_directory_exists_cache ||= Hash.new do |h, dirname| h[dirname] = File.directory? dirname end end


