# File lib/action_controller/caching.rb, line 101 def caches_page(*actions) return unless perform_caching actions = actions.map(&:to_s) after_filter { |c| c.cache_page if actions.include?(c.action_name) } end