instance method
view_context_class
Ruby on Rails 4.1.16
Since v4.1.16Signature
view_context_class()
No documentation comment.
Source
# File actionview/lib/action_view/rendering.rb, line 36
def view_context_class
@view_context_class ||= begin
routes = respond_to?(:_routes) && _routes
helpers = respond_to?(:_helpers) && _helpers
Class.new(ActionView::Base) do
if routes
include routes.url_helpers
include routes.mounted_helpers
end
if helpers
include helpers
end
end
end
end
Defined in actionview/lib/action_view/rendering.rb line 36
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Rendering::ClassMethods