diff options
-rw-r--r-- | lib/zero/controller.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/zero/controller.rb b/lib/zero/controller.rb index 76d0f46..5784aa0 100644 --- a/lib/zero/controller.rb +++ b/lib/zero/controller.rb @@ -20,7 +20,17 @@ module Zero # build the response and return it # @return Response a rack conform response def response - raise NotImplementedError.new("Not Implemented in ${__FILE__}") + process if respond_to?(:process) + render + @response + end + + def process + raise NotImplementedError.new("'render' not implemented in #{self.class}") + end + + def process + raise NotImplementedError.new("'render' not implemented in #{self.class}") end end end |