Flowdock
method

view_context_class

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: AbstractController::Rendering::ClassMethods
view_context_class() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/abstract_controller/rendering.rb, line 51
      def view_context_class
        @view_context_class ||= begin
          routes  = _routes  if respond_to?(:_routes)
          helpers = _helpers if respond_to?(:_helpers)
          ActionView::Base.prepare(routes, helpers)
        end
      end
Register or log in to add new notes.