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, &block) ⇒ HundredsWithUnion

Returns a new instance of HundredsWithUnion.



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

def initialize proxy, *args, &block
  @strategy = proxy.strategy
  @options = proxy.options
end

Instance Attribute Details

#optionsObject

Returns the value of attribute options.



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

def options
  @options
end

#strategyObject

Returns the value of attribute strategy.



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

def strategy
  @strategy
end

Instance Method Details

#modify_or_leave(hundreds) ⇒ Object



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

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