Skip to Content Skip to Search
Namespace
Methods
C
V
Included Modules

Instance Public methods

view_cache_dependencies()

# File actionpack/lib/abstract_controller/caching.rb, line 52
def view_cache_dependencies
  self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end

Instance Private methods

cache(key, options = {}, &block)

Convenience accessor.

# File actionpack/lib/abstract_controller/caching.rb, line 58
def cache(key, options = {}, &block) # :doc:
  if cache_configured?
    cache_store.fetch(ActiveSupport::Cache.expand_cache_key(key, :controller), options, &block)
  else
    yield
  end
end