Sha256: 72070782bf0c1db31279b835a885435280f5dbe9f606c5be90d8841a8434e061
Contents?: true
Size: 584 Bytes
Versions: 29
Compression:
Stored size: 584 Bytes
Contents
require 'rack/utils' module Rack # Sets the Content-Type header on responses which don't have one. # # Builder Usage: # use Rack::ContentType, "text/plain" # # When no content type argument is provided, "text/html" is assumed. class ContentType def initialize(app, content_type = "text/html") @app, @content_type = app, content_type end def call(env) status, headers, body = @app.call(env) headers = Utils::HeaderHash.new(headers) headers['Content-Type'] ||= @content_type [status, headers.to_hash, body] end end end
Version data entries
29 entries across 29 versions & 13 rubygems