# File lib/innate/helper/redirect.rb, line 4
      def respond(body, status = 200, header = {})
        response.write body
        response.status = status
        header['Content-Type'] ||= Response.mime_type
        header.each{|key, value| response[key] = value }

        throw(:respond, response)
      end