diff options
author | Gibheer <gibheer@gmail.com> | 2012-11-17 11:35:49 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2012-11-20 20:37:10 +0100 |
commit | 4e2a4b8931327b7540320ca8f8d65e5ce0ab3a09 (patch) | |
tree | 20c448af053dbd3dd77da5a2efe86d755553b5d6 /lib | |
parent | d7c217bd3057b18c8c2dff12e0a5974719185b68 (diff) |
use Zero::Request instead of the rack one
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zero/controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zero/controller.rb b/lib/zero/controller.rb index 3c3af8c..76d0f46 100644 --- a/lib/zero/controller.rb +++ b/lib/zero/controller.rb @@ -7,7 +7,7 @@ module Zero class Controller # initialize a new instance of the controller and call response on it def self.call(env) - new(Rack::Request.new(env)).response + new(Zero::Request.new(env)).response end # initialize the controller |