diff options
author | Gibheer <gibheer@gmail.com> | 2013-01-29 10:55:16 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2013-01-29 10:55:16 +0100 |
commit | 27442f40613cb3a557ca7a0a9d34a4e4296072bd (patch) | |
tree | 402f7a0b29cf46880fac7e74333daf7878b99aae /lib | |
parent | eeb0169bc9f6a6f7f60f47cc390845d5cc6cb8ab (diff) |
remove more leftovers from class_options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zero.rb | 2 | ||||
-rw-r--r-- | lib/zero/controller.rb | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/lib/zero.rb b/lib/zero.rb index 22bd30c..2f18519 100644 --- a/lib/zero.rb +++ b/lib/zero.rb @@ -3,8 +3,6 @@ if RUBY_VERSION <= '1.9' require 'zero_fix18' end -require 'class_options' - module Zero require 'zero/controller' require 'zero/router' diff --git a/lib/zero/controller.rb b/lib/zero/controller.rb index b9568cd..cf4c17e 100644 --- a/lib/zero/controller.rb +++ b/lib/zero/controller.rb @@ -5,7 +5,6 @@ module Zero # rack compatible controllers. It catches #call and creates a new instance # with the environment and calls #render on it. class Controller - extend ClassOptions::Options # initialize a new instance of the controller and call response on it def self.call(env) new(env).response |