Class: TTFunk::Table::Simple
- Inherits:
-
TTFunk::Table
- Object
- TTFunk::Table
- TTFunk::Table::Simple
- Defined in:
- lib/ttfunk/table/simple.rb
Overview
A table that TTFunk doesn’t decode but preserve.
Instance Attribute Summary collapse
-
#tag ⇒ String
readonly
Table tag.
Attributes inherited from TTFunk::Table
Instance Method Summary collapse
-
#initialize(file, tag) ⇒ Simple
constructor
A new instance of Simple.
Methods inherited from TTFunk::Table
Constructor Details
#initialize(file, tag) ⇒ Simple
Returns a new instance of Simple.
Source Code
lib/ttfunk/table/simple.rb, line 15
15 | def initialize(file, tag) |
16 | @tag = tag |
17 | super(file) |
18 | end
|
Instance Attribute Details
#tag ⇒ String (readonly)
Table tag
Source Code
lib/ttfunk/table/simple.rb, line 11
11 | def tag |
12 | @tag
|
13 | end
|