# File lib/action_controller/caching/actions.rb, line 54
        def caches_action(*actions)
          return unless cache_configured?
          options = actions.extract_options!
          around_filter(ActionCacheFilter.new(:cache_path => options.delete(:cache_path)), {:only => actions}.merge(options))
        end