class method
self.new
Ruby on Rails 3.0.20
Since v3.0.20 Last seen in v3.0.20Signature
self.new(status = 200, header = {}, body = [])
No documentation comment.
Parameters
-
statusopt = 200 -
headeropt = {} -
bodyopt = []
Source
# File actionpack/lib/action_dispatch/http/response.rb, line 42
def initialize(status = 200, header = {}, body = [])
@writer = lambda { |x| @body << x }
@block = nil
@length = 0
@status, @header = status, header
self.body = body
@cookie = []
@sending_file = false
@blank = false
if content_type = self["Content-Type"]
type, charset = content_type.split(/;\s*charset=/)
@content_type = Mime::Type.lookup(type)
@charset = charset || "UTF-8"
end
yield self if block_given?
end
Defined in actionpack/lib/action_dispatch/http/response.rb line 42
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Response::Setup