# File lib/action_dispatch/http/response.rb, line 107 def body=(body) @blank = true if body == EMPTY @body = body.respond_to?(:to_str) ? [body] : body end