From c587c585e6d327c1646ce33fa10fbef6c27fc74c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 19 Jul 2010 10:09:50 +0000 Subject: no need to pass 'rb' as File.open flags IO#read always returns a binary string buffer if passed an explicit length to read, and we always do that. This is a small garbage reduction. --- lib/rainbows/sendfile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rainbows/sendfile.rb') diff --git a/lib/rainbows/sendfile.rb b/lib/rainbows/sendfile.rb index c2e63be..2804217 100644 --- a/lib/rainbows/sendfile.rb +++ b/lib/rainbows/sendfile.rb @@ -65,7 +65,7 @@ class Rainbows::Sendfile < Struct.new(:app) # fallback in case our +to_path+ doesn't get handled for whatever reason def each(&block) buf = '' - File.open(to_path, 'rb') do |fp| + File.open(to_path) do |fp| yield buf while fp.read(0x4000, buf) end end -- cgit v1.2.3-24-ge0c7