Module: XMLRPC::ParseContentType

Included in:
BasicServer, Client
Defined in:
lib/xmlrpc/utils.rb

Instance Method Summary collapse

Instance Method Details

#parse_content_type(str) ⇒ Object



158
159
160
161
# File 'lib/xmlrpc/utils.rb', line 158

def parse_content_type(str)
  a, *b = str.split(";")
  return a.strip.downcase, *b
end