File: dbase4.rb

package info (click to toggle)
ruby-dbf 4.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,732 kB
  • sloc: ruby: 1,692; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 225 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
module DBF
  module Memo
    class Dbase4 < Base
      def build_memo(start_block) # :nodoc:
        @data.seek offset(start_block)
        @data.read(@data.read(BLOCK_HEADER_SIZE).unpack1('x4L'))
      end
    end
  end
end