Sha256: c6fe6de9bba77f0ccea6466eb8c9ff0f87e553df844a132e3675db30ac967583

Contents?: true

Size: 790 Bytes

Versions: 6

Compression:

Stored size: 790 Bytes

Contents

require_relative 'constants/ms'

module Humanize
  class Ms
    def humanize(number)
      iteration = 0
      parts = []
      until number.zero?
        number, remainder = number.divmod(1000)
        unless remainder.zero?
          add_grouping(parts, iteration)

          parts << SUB_ONE_GROUPING[remainder]
        end

        iteration += 1
      end

      correct_one_thousand(parts)
    end

    def add_grouping(parts, iteration)
      grouping = LOTS[iteration]
      return unless grouping

      parts << grouping
    end

    def correct_one_thousand(parts)
      lots = LOTS.drop(2)
      wrong_1000_re = /(?<=#{lots.join(" |")} )\s*satu ribu|^satu ribu/
      parts = parts.reverse.join(" ").sub(wrong_1000_re, 'seribu')
      parts.split(" ").reverse
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
humanize-2.5.1 lib/humanize/locales/ms.rb
humanize-2.5.0 lib/humanize/locales/ms.rb
humanize-2.4.3 lib/humanize/locales/ms.rb
humanize-2.4.2 lib/humanize/locales/ms.rb
humanize-2.4.1 lib/humanize/locales/ms.rb
humanize-2.4.0 lib/humanize/locales/ms.rb