DEBSOURCES
Skip Quicknav
sources / ruby-ttfunk / 1.0.3%2Bdfsg-1 / lib / ttfunk / table / simple.rb
1234567891011121314
require 'ttfunk/table' module TTFunk class Table class Simple < Table attr_reader :tag def initialize(file, tag) @tag = tag super(file) end end end end