The response object. See Rack::Response and Rack::Response::Helpers for more info: rubydoc.info/github/rack/rack/master/Rack/Response rubydoc.info/github/rack/rack/master/Rack/Response/Helpers
# File lib/sinatra/base.rb, line 124 def initialize(*) super headers['Content-Type'] ||= 'text/html' end
# File lib/sinatra/base.rb, line 129 def body=(value) value = value.body while Rack::Response === value @body = String === value ? [value.to_str] : value end
# File lib/sinatra/base.rb, line 134 def each block_given? ? super : enum_for(:each) end
# File lib/sinatra/base.rb, line 138 def finish result = body if drop_content_info? headers.delete "Content-Length" headers.delete "Content-Type" end if drop_body? close result = [] end if calculate_content_length? # if some other code has already set Content-Length, don't muck with it # currently, this would be the static file-handler headers["Content-Length"] = body.inject(0) { |l, p| l + Rack::Utils.bytesize(p) }.to_s end [status.to_i, headers, result] end
# File lib/sinatra/base.rb, line 162 def calculate_content_length? headers["Content-Type"] and not headers["Content-Length"] and Array === body end
# File lib/sinatra/base.rb, line 170 def drop_body? DROP_BODY_RESPONSES.include?(status.to_i) end
# File lib/sinatra/base.rb, line 166 def drop_content_info? status.to_i / 100 == 1 or drop_body? end