Method: ActionController::Rendering#render_to_string

Defined in:
lib/action_controller/metal/rendering.rb

#render_to_stringObject

Overwrite render_to_string because body can now be set to a rack body.



22
23
24
25
26
27
28
29
30
# File 'lib/action_controller/metal/rendering.rb', line 22

def render_to_string(*)
  if self.response_body = super
    string = ""
    response_body.each { |r| string << r }
    string
  end
ensure
  self.response_body = nil
end