Sha256: ef63043f9add2a13c1acf457fd6d59c16b101db4dee28183c0942819c476b872
Contents?: true
Size: 622 Bytes
Versions: 5
Compression:
Stored size: 622 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_URL = 'ucd/HangulSyllableType.txt' PROPERTY_NAME = 'Hangul_Syllable_Type' def initialize(input_path, database) super( input_path: input_path, property_name: PROPERTY_NAME, data_url: DATA_URL, data_path: File.basename(DATA_URL), database: database ) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems