about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-03-01 18:25:08 +0000
committerEric Wong <normalperson@yhbt.net>2010-03-01 18:26:31 +0000
commit39bdcadb986e3ca82a243ace90daee28c9d3f1e4 (patch)
treeedb4d17d87f96ce652e6c7cb1c07f498ca6bbf10 /lib
parent45e89c0fed05396652bd3061b9b4f0814dc7d37d (diff)
downloadunicorn-39bdcadb986e3ca82a243ace90daee28c9d3f1e4.tar.gz
It's part of the standard Ruby library and will always be loaded
by various modules (Rack::Utils, Tmpdir) so there's no point in
deferring it.
Diffstat (limited to 'lib')
-rw-r--r--lib/unicorn.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn.rb b/lib/unicorn.rb
index 2a2f54e..b63abeb 100644
--- a/lib/unicorn.rb
+++ b/lib/unicorn.rb
@@ -2,8 +2,8 @@
 
 require 'fcntl'
 require 'unicorn/socket_helper'
+require 'etc'
 autoload :Rack, 'rack'
-autoload :Etc, 'etc'
 
 # Unicorn module containing all of the classes (include C extensions) for running
 # a Unicorn web server.  It contains a minimalist HTTP server with just enough