module ActionController::Renderers

def render_to_body(options)

`ActionView::Rendering.render_to_body`, if present.
If no renderer is found, `super` returns control to

value as the `response_body`.
Called by `render` in AbstractController::Rendering which sets the return
def render_to_body(options)
  _render_to_body_with_renderer(options) || super
end