instance method
inherit_view_context_class?
Ruby on Rails 7.2.3
Since v7.1.6Signature
inherit_view_context_class?()
No documentation comment.
Source
# File actionview/lib/action_view/rendering.rb, line 52
def inherit_view_context_class?
superclass.respond_to?(:view_context_class) &&
supports_path? == superclass.supports_path? &&
_routes.equal?(superclass._routes) &&
_helpers.equal?(superclass._helpers)
end
Defined in actionview/lib/action_view/rendering.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Rendering::ClassMethods