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