about summary refs log tree commit homepage
path: root/lib/unicorn/const.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-02-05 17:45:14 +0000
committerEric Wong <e@80x24.org>2015-02-05 17:58:33 +0000
commit8f7c396792c1e81ea14a7a275db9b0cd3ae96ec8 (patch)
treef81096870fbea7e9ce9f9767276ade14a14d909c /lib/unicorn/const.rb
parentbaab2fc0600c284bf5108a9d9b02b774174ded5d (diff)
downloadunicorn-8f7c396792c1e81ea14a7a275db9b0cd3ae96ec8.tar.gz
require_relative appeared in Ruby 1.9.2 to speed up load times by
avoiding needless open() syscalls.  This has no effect if you're using
RUBYLIB or the '-I' option when running ruby(1), but avoids searching
paths in other gems.

This does not affect unicorn greatly as unicorn does not activate many
gems, but still leads to reducing ~45 syscalls during startup.
Diffstat (limited to 'lib/unicorn/const.rb')
-rw-r--r--lib/unicorn/const.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index 51d7394..26fa62b 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -41,4 +41,4 @@ module Unicorn::Const
 
   # :startdoc:
 end
-require 'unicorn/version'
+require_relative 'version'