Sha256: 213b570929a198156c844b1f2ecc51918d3c9e20709baa65365bd320ac4b725f

Contents?: true

Size: 236 Bytes

Versions: 5

Compression:

Stored size: 236 Bytes

Contents

# frozen_string_literal: true

require_relative '../table'

module TTFunk
  class Table
    class Simple < Table
      attr_reader :tag

      def initialize(file, tag)
        @tag = tag
        super(file)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ttfunk-1.7.0 lib/ttfunk/table/simple.rb
ttfunk-1.6.2.1 lib/ttfunk/table/simple.rb
ttfunk-1.6.2 lib/ttfunk/table/simple.rb
ttfunk-1.6.1 lib/ttfunk/table/simple.rb
ttfunk-1.6.0 lib/ttfunk/table/simple.rb