Methods
V
Instance Public methods
view_context_class()
    # File actionpack/lib/abstract_controller/rendering.rb, line 51
51:       def view_context_class
52:         @view_context_class ||= begin
53:           routes  = _routes  if respond_to?(:_routes)
54:           helpers = _helpers if respond_to?(:_helpers)
55:           ActionView::Base.prepare(routes, helpers)
56:         end
57:       end