Class: TwitterCldr::Localized::LocalizedNumber

Inherits:
LocalizedObject show all
Defined in:
lib/twitter_cldr/localized/localized_number.rb

Instance Attribute Summary collapse

Attributes inherited from LocalizedObject

#base_obj, #formatter, #locale

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from LocalizedObject

localize

Constructor Details

#initialize(obj, locale, options = {}) ⇒ LocalizedNumber

Returns a new instance of LocalizedNumber.



12
13
14
15
16
# File 'lib/twitter_cldr/localized/localized_number.rb', line 12

def initialize(obj, locale, options = {})
  @type = options[:type]
  @format = options[:format]
  super
end

Instance Attribute Details

#formatObject (readonly)

Returns the value of attribute format.



10
11
12
# File 'lib/twitter_cldr/localized/localized_number.rb', line 10

def format
  @format
end

#typeObject (readonly)

Returns the value of attribute type.



10
11
12
# File 'lib/twitter_cldr/localized/localized_number.rb', line 10

def type
  @type
end

Class Method Details

.typesObject



19
20
21
# File 'lib/twitter_cldr/localized/localized_number.rb', line 19

def types
  TwitterCldr::DataReaders::NumberDataReader.types
end

Instance Method Details

#plural_ruleObject



50
51
52
# File 'lib/twitter_cldr/localized/localized_number.rb', line 50

def plural_rule
  TwitterCldr::Formatters::Plurals::Rules.rule_for(base_obj, locale)
end

#rbnfObject



67
68
69
# File 'lib/twitter_cldr/localized/localized_number.rb', line 67

def rbnf
  @rbnf ||= TwitterCldr::Formatters::Rbnf::RbnfFormatter.new(locale)
end

#spelloutObject



54
55
56
57
58
# File 'lib/twitter_cldr/localized/localized_number.rb', line 54

def spellout
  rbnf.format(
    base_obj, TwitterCldr::Formatters::Rbnf::RbnfFormatter::DEFAULT_SPELLOUT_OPTIONS
  )
end

#to_rbnf_s(group_name, rule_set_name) ⇒ Object



60
61
62
63
64
65
# File 'lib/twitter_cldr/localized/localized_number.rb', line 60

def to_rbnf_s(group_name, rule_set_name)
  rbnf.format(base_obj, {
    :rule_group => group_name,
    :rule_set => rule_set_name
  })
end

#to_s(options = {}) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/twitter_cldr/localized/localized_number.rb', line 30

def to_s(options = {})
  data_reader = TwitterCldr::DataReaders::NumberDataReader.new(locale, {
    :type => @type,
    :format => @format
  })

  pattern = data_reader.pattern(base_obj)

  if pattern == 0
    # can't format the number for current locale
    base_obj.to_s
  else
    data_reader.formatter.format(
      data_reader.tokenizer.tokenize(pattern),
      base_obj,
      options.merge(:type => @type)
    )
  end
end