From ed9f3e90939cfa9efcc6e5e9382f1e1f40c49834 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 18 Jun 2010 06:41:58 +0000 Subject: prefer Array#[] lookup to Array#first/Array#last Array#[] lookups are slightly faster under both rbx and 1.9, and easier to read. --- lib/rainbows.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rainbows.rb') diff --git a/lib/rainbows.rb b/lib/rainbows.rb index 5aae746..dd7cf1b 100644 --- a/lib/rainbows.rb +++ b/lib/rainbows.rb @@ -85,7 +85,7 @@ module Rainbows # to by the (non-frozen) Unicorn::HttpRequest::LOCALHOST constant. def addr(io) io.respond_to?(:peeraddr) ? - io.peeraddr.last : Unicorn::HttpRequest::LOCALHOST + io.peeraddr[-1] : Unicorn::HttpRequest::LOCALHOST end # the default max body size is 1 megabyte (1024 * 1024 bytes) -- cgit v1.2.3-24-ge0c7