aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/zero/controller.rb4
1 files 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