class Async::REST::Wrapper::URLEncoded

def parser_for(response)

def parser_for(response)
	if content_type = response.headers["content-type"]
		if content_type.start_with? @content_type
			return Parser
		end
	end
	
	return super
end