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

Methods

Public Instance methods

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

[Source]

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

[Validate]