class NumbersAndWords::Translations::Hy
Public Instance Methods
Source
# File lib/numbers_and_words/translations/hy.rb, line 13 def hundreds(number, _options = {}) parts = [t(:hundreds)] parts.unshift(t(:ones)[number]) if number > 1 parts.join(' ') end
Source
# File lib/numbers_and_words/translations/hy.rb, line 8 def tens_with_ones(numbers, options = {}) options[:separator] ||= '' super end
Calls superclass method