# File lib/rev/buffered_io.rb, line 22 22: def initialize(io) 23: # Output buffer 24: @write_buffer = Rev::Buffer.new 25: 26: # Coerce the argument into an IO object if possible 27: @io = IO.try_convert(io) 28: super(@io) 29: end