Skip to content

Instantly share code, notes, and snippets.

@kusor
Created May 8, 2009 13:43
Show Gist options
  • Save kusor/108779 to your computer and use it in GitHub Desktop.
Save kusor/108779 to your computer and use it in GitHub Desktop.
require 'net/http'
module Net
class BufferedIO
def rbuf_fill
timeout(@read_timeout, ProtocolError) {
@rbuf << @io.sysread(1024)
}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment