Sha256: ef0a971c01b157bcb1fec37f9ca6ecf04aa286185905ab185a018b02e4a951d0
Contents?: true
Size: 664 Bytes
Versions: 41
Compression:
Stored size: 664 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Resources module Properties class HangulSyllableTypePropertyImporter < PropertyImporter DATA_FILE = 'ucd/HangulSyllableType.txt' PROPERTY_NAME = 'Hangul_Syllable_Type' 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