instance method
disable_cache
Ruby on Rails 6.1.7.10
Since v3.2.22.5Signature
disable_cache()
Temporary skip passing the details_key forward.
Source
# File actionview/lib/action_view/lookup_context.rb, line 106
def disable_cache
old_value, @cache = @cache, false
yield
ensure
@cache = old_value
end
Defined in actionview/lib/action_view/lookup_context.rb line 106
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::LookupContext::DetailsCache