diff 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 |