Add caching behavior on top of Details.
Methods
Attributes
[RW] | cache |
Instance Public methods
disable_cache()
Temporary skip passing the details_key forward.
Source:
# File actionview/lib/action_view/lookup_context.rb, line 110
def disable_cache
old_value, @cache = @cache, false
yield
ensure
@cache = old_value
end