Class: NumbersAndWords::Strategies::FiguresConverter::Options::Proxy

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(strategy, options) ⇒ Proxy

Returns a new instance of Proxy.



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

def initialize strategy, options
  @strategy = strategy
  @options = options
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args, &block) ⇒ Object



19
20
21
22
23
# File 'lib/numbers_and_words/strategies/figures_converter/options.rb', line 19

def method_missing method_name, *args, &block
  proxy_class_name(method_name).constantize.new self, args, block
rescue NameError
  return nil
end

Instance Attribute Details

#optionsObject

Returns the value of attribute options.



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

def options
  @options
end

#strategyObject

Returns the value of attribute strategy.



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

def strategy
  @strategy
end