Flowdock
method

parse_content_type

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActionDispatch::Response
parse_content_type() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/response.rb, line 406
    def parse_content_type
      content_type = get_header CONTENT_TYPE
      if content_type
        type, charset = content_type.split(/;\s*charset=/)
        type = nil if type.empty?
        ContentTypeHeader.new(type, charset)
      else
        NullContentTypeHeader
      end
    end
Register or log in to add new notes.