# File lib/hiredis/ruby/reader.rb, line 156
        def read_line
          start = @pos
          stop = @buffer.index(CRLF, @pos)
          return false unless stop

          @pos = stop + 2 # include CRLF
          force_encoding @buffer[start, stop - start]
        end