instance method
view_context
Ruby on Rails 4.0.13
Since v3.0.20 Last seen in v4.0.13Signature
view_context()
An instance of a view class. The default view class is ActionView::Base
The view class must have the following methods: View.new[lookup_context, assigns, controller]
Create a new ActionView instance for a controller
View#render
Returns String with the rendered template
Override this method in a module to change the default behavior.
Source
# File actionpack/lib/abstract_controller/rendering.rb, line 84
def view_context
view_context_class.new(view_renderer, view_assigns, self)
end
Defined in actionpack/lib/abstract_controller/rendering.rb line 84
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Rendering