Sha256: 955201516bad72b64b222b7d95d38c6a09f7fdd1a90359210dd7a6510311099b
Contents?: true
Size: 372 Bytes
Versions: 20
Compression:
Stored size: 372 Bytes
Contents
module DBF module Memo class Dbase3 < Base def build_memo(start_block) # :nodoc: @data.seek offset(start_block) memo_string = '' loop do block = @data.read(BLOCK_SIZE).gsub(/(\000|\032)/, '') memo_string << block break if block.size < BLOCK_SIZE end memo_string end end end end
Version data entries
20 entries across 20 versions & 1 rubygems