1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
require_relative 'constants/fr'
module Humanize
class Fr
def humanize(number)
iteration = 0
parts = []
until number.zero?
number, remainder = number.divmod(1000)
unless remainder.zero?
add_grouping(parts, iteration, remainder)
parts << SUB_ONE_GROUPING[remainder] unless exactly_one_thousand?(remainder, parts)
end
iteration += 1
end
parts
end
private
def exactly_one_thousand?(remainder, parts)
remainder == 1 && parts.last.to_s.strip == 'mille'
end
def plural_for_lots(remainder, word, iteration)
if remainder > 1 && iteration >= 2
"#{word}s"
else
word
end
end
def add_grouping(parts, iteration, remainder)
grouping = plural_for_lots(remainder, LOTS[iteration], iteration)
return unless grouping
parts << grouping
end
end
end
|