method
body=
v3.0.9 -
Show latest stable
- Class:
ActionDispatch::Response
body=(body)public
No documentation available.
# File actionpack/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