about summary refs log tree commit homepage
path: root/lib/unicorn/configurator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicorn/configurator.rb')
-rw-r--r--lib/unicorn/configurator.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/unicorn/configurator.rb b/lib/unicorn/configurator.rb
index 402204e..e01dbe1 100644
--- a/lib/unicorn/configurator.rb
+++ b/lib/unicorn/configurator.rb
@@ -28,7 +28,6 @@ module Unicorn
       :before_fork => lambda { |server, worker_nr|
           server.logger.info("worker=#{worker_nr} spawning...")
         },
-      :directory => nil,
       :pid => nil,
       :backlog => 1024,
       :preload_app => false,
@@ -142,10 +141,6 @@ module Unicorn
     # sets the +path+ for the PID file of the unicorn master process
     def pid(path); set_path(:pid, path); end
 
-    def directory(path)
-      @set[:directory] = path ? File.expand_path(path) : nil
-    end
-
     def preload_app(bool)
       case bool
       when TrueClass, FalseClass