From b0013b043a15d77d810d5965157766c1af364db2 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 9 Jun 2009 16:22:55 -0700 Subject: Avoid duplicating the "Z" constant Trying not to repeat ourselves. Unfortunately, Ruby 1.9 forces us to actually care about encodings of arbitrary byte sequences. --- lib/unicorn.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/unicorn.rb') diff --git a/lib/unicorn.rb b/lib/unicorn.rb index f45c613..13da564 100644 --- a/lib/unicorn.rb +++ b/lib/unicorn.rb @@ -14,6 +14,10 @@ module Unicorn autoload :ChunkedReader, 'unicorn/chunked_reader' autoload :Util, 'unicorn/util' + Z = '' # the stock empty string we use everywhere... + Z.force_encoding(Encoding::BINARY) if Z.respond_to?(:force_encoding) + Z.freeze + class << self def run(app, options = {}) HttpServer.new(app, options).start.join -- cgit v1.2.3-24-ge0c7