File: simple.rb

package info (click to toggle)
ruby-ttfunk 1.0.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 916 kB
  • sloc: ruby: 1,719; makefile: 16
file content (14 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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