lib/ttfunk/directory.rb in ttfunk-1.2.2 vs lib/ttfunk/directory.rb in ttfunk-1.3.0

- old
+ new

@@ -2,12 +2,11 @@ class Directory attr_reader :tables attr_reader :scaler_type def initialize(io) - @scaler_type, table_count, search_range, - entry_selector, range_shift = io.read(12).unpack("Nn*") - + @scaler_type, table_count = io.read(12).unpack("Nn") + @tables = {} table_count.times do tag, checksum, offset, length = io.read(16).unpack("a4N*") @tables[tag] = { :tag => tag, :checksum => checksum, :offset => offset, :length => length } end