Sha256: 1dab904b86917612546c226da04bf6bf4e4e51b8d9daf492f1f73ec9f8ef1b5f
Contents?: true
Size: 674 Bytes
Versions: 41
Compression:
Stored size: 674 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Resources module Properties class GraphemeBreakPropertyImporter < PropertyImporter DATA_FILE = 'ucd/auxiliary/GraphemeBreakProperty.txt' PROPERTY_NAME = 'Grapheme_Cluster_Break' 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
41 entries across 41 versions & 2 rubygems