Sha256: f71dd2b4bfa6c4e7f8d2e0750b25dc8a9b9e8609c00fddb4dd5930ed919b2584
Contents?: true
Size: 652 Bytes
Versions: 40
Compression:
Stored size: 652 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Resources module Properties class EastAsianWidthPropertyImporter < PropertyImporter DATA_FILE = 'ucd/EastAsianWidth.txt' PROPERTY_NAME = 'East_Asian_Width' requirement :unicode, Versions.unicode_version, [DATA_FILE] output_path 'unicode_data/properties' ruby_engine :mri def property_name PROPERTY_NAME end private def source_path requirements[:unicode].source_path_for(DATA_FILE) end end end end end
Version data entries
40 entries across 40 versions & 2 rubygems