Method: WebFlow::Base#old_render
- Defined in:
- lib/webflow/base.rb
#old_render ⇒ Object
Aliases the ‘render’ method to intercept it and cache it’s execution results. Doing this allows to delay the calls to the render method until the end of the current step chain so that if a plugin wishes to interrupt the chain and render some other content, there won’t be any conflict between previous calls to the render method.
165 |
# File 'lib/webflow/base.rb', line 165 alias_method :old_render, :render |