module AbstractController::Rendering
def render_to_string(*args, &block)
render_response into a String.
Raw rendering of a template to a string. Just convert the results of
def render_to_string(*args, &block) options = _normalize_render(*args, &block) render_to_body(options) end