# File lib/evma_httpserver/response.rb, line 63 63: def content_type *mime 64: if mime.length > 0 65: @headers["Content-type"] = mime.first.to_s 66: else 67: @headers["Content-type"] 68: end 69: end