Flowdock
method

parse_content_type

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActionDispatch::Response
parse_content_type(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 412
    def parse_content_type(content_type)
      if content_type && match = CONTENT_TYPE_PARSER.match(content_type)
        ContentTypeHeader.new(match[:type], match[:charset])
      else
        NullContentTypeHeader
      end
    end
Register or log in to add new notes.