Overwrite render_to_string
because body can now be set to a rack body.
# File actionpack/lib/action_controller/metal/rendering.rb, line 20
def render_to_string(*)
result = super
if result.respond_to?(:each)
string = ""
result.each { |r| string << r }
string
else
result
end
end