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