Sha256: ae8ac591f7527d09aa20a6d29ae0c7df6a81bc1f11a6b00142907c7775903248
Contents?: true
Size: 428 Bytes
Versions: 5
Compression:
Stored size: 428 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 class Array def localize(locale = TwitterCldr.get_locale) TwitterCldr::LocalizedArray.new(self, locale) end end module TwitterCldr class LocalizedArray < LocalizedObject def code_points_to_string TwitterCldr::Utils::CodePoints.to_string(self.base_obj) end def formatter_const nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems