Class: NumbersAndWords::Strategies::FiguresConverter::Options::En::HundredsWithUnion

Inherits:
Object
  • Object
show all
Defined in:
lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(proxy, *_args) ⇒ HundredsWithUnion

Returns a new instance of HundredsWithUnion.



11
12
13
14
# File 'lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb', line 11

def initialize(proxy, *_args)
  @strategy = proxy.strategy
  @options = proxy.options
end

Instance Attribute Details

#optionsObject

Returns the value of attribute options.



9
10
11
# File 'lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb', line 9

def options
  @options
end

#strategyObject

Returns the value of attribute strategy.



9
10
11
# File 'lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb', line 9

def strategy
  @strategy
end

Instance Method Details

#modify_or_leave(hundreds) ⇒ Object



16
17
18
19
# File 'lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb', line 16

def modify_or_leave(hundreds)
  hundreds = "#{hundreds} #{translations.union}" if active? && !round_hundred?
  hundreds
end