Skip to Content Skip to Search
Namespace
Methods
R

Constants

RENDER_FORMATS_IN_PRIORITY = [:body, :plain, :html]
 

Instance Public methods

render_to_body(options = {})

# File actionpack/lib/action_controller/metal/rendering.rb, line 45
def render_to_body(options = {})
  super || _render_in_priorities(options) || " "
end

render_to_string(*)

Override render_to_string because body can now be set to a Rack body.

# File actionpack/lib/action_controller/metal/rendering.rb, line 34
def render_to_string(*)
  result = super
  if result.respond_to?(:each)
    string = +""
    result.each { |r| string << r }
    string
  else
    result
  end
end