Module ActionController::Caching::Actions::ClassMethods
In: actionpack/lib/action_controller/caching.rb

Methods

Public Instance methods

Declares that actions should be cached. See ActionController::Caching::Actions for details.

[Source]

# File actionpack/lib/action_controller/caching.rb, line 208
        def caches_action(*actions)
          return unless perform_caching
          around_filter(ActionCacheFilter.new(*actions))
        end

[Validate]