Sha256: 9eb6b62fc4b1ae6eb322ed44e452c6b6a2fa4e58169fefcf6b6488805695fbc6

Contents?: true

Size: 246 Bytes

Versions: 5

Compression:

Stored size: 246 Bytes

Contents

# frozen_string_literal: true

require 'set'

require_relative 'code_page'

module TTFunk
  module Subset
    class Windows1252 < CodePage
      def initialize(original)
        super(original, 1252, Encoding::CP1252)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ttfunk-1.7.0 lib/ttfunk/subset/windows_1252.rb
ttfunk-1.6.2.1 lib/ttfunk/subset/windows_1252.rb
ttfunk-1.6.2 lib/ttfunk/subset/windows_1252.rb
ttfunk-1.6.1 lib/ttfunk/subset/windows_1252.rb
ttfunk-1.6.0 lib/ttfunk/subset/windows_1252.rb