From 3ec99843eb0e9df7c23996893441c526ae7f2f3f Mon Sep 17 00:00:00 2001 From: Gibheer Date: Fri, 5 Oct 2012 20:35:34 +0200 Subject: [PATCH] switched render with response The intention is, that everything gets rendered first and after that packed to a response. This way, error checking on the response can be done after rendering. --- lib/zero/controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/zero/controller.rb b/lib/zero/controller.rb index 2d95ff9..30d6632 100644 --- a/lib/zero/controller.rb +++ b/lib/zero/controller.rb @@ -7,7 +7,7 @@ module Zero # with the environment and calls #render on it. class Controller def self.call(env) - new(Request.new(env)).render + new(Request.new(env)).response end def initialize(request) @@ -23,7 +23,7 @@ module Zero end def render - raise NotImplementedError + raise NotImplementedError.new end end end