method
page_cache_file
page_cache_file(path)
private
Hide source
# File actionpack/lib/action_controller/caching/pages.rb, line 99 def page_cache_file(path) name = (path.empty? || path == "/") ? "/index" : URI.unescape(path.chomp('/')) name << page_cache_extension unless (name.split('/').last || name).include? '.' return name end