Sha256: 4ef8b353b9af7616facb943396e52c71de7a830fa65eafb229fecda9a56b1bc1
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Localized class LocalizedNumber < LocalizedObject attr_reader :type, :format def initialize(obj, locale, options = {}) @type = options[:type] @format = options[:format] super end class << self def types TwitterCldr::DataReaders::NumberDataReader.types end end types.each do |type| define_method "to_#{type}" do to_type(type) end end def to_s(options = {}) TwitterCldr::DataReaders::NumberDataReader.new(locale, { type: @type, format: @format }).format_number(base_obj, options.merge(type: @type)) end def plural_rule TwitterCldr::Formatters::Plurals::Rules.rule_for(base_obj, locale) end def spellout rbnf.format( base_obj, TwitterCldr::Formatters::Rbnf::RbnfFormatter::DEFAULT_SPELLOUT_OPTIONS ) end def to_rbnf_s(group_name, rule_set_name) rbnf.format(base_obj, { rule_group: group_name, rule_set: rule_set_name }) end def rbnf @rbnf ||= TwitterCldr::Formatters::Rbnf::RbnfFormatter.new(locale) end protected def to_type(target_type) self.class.new(base_obj, locale, { type: target_type, format: @format }) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
twitter_cldr-3.3.0 | lib/twitter_cldr/localized/localized_number.rb |