class NumbersAndWords::Strategies::FiguresConverter::Decorators::Base

Public Class Methods

new(strategy, options) click to toggle source
# File lib/numbers_and_words/strategies/figures_converter/decorators/base.rb, line 8
def initialize(strategy, options)
  @strategy = strategy
  @options = options
end

Public Instance Methods

run() { || ... } click to toggle source
# File lib/numbers_and_words/strategies/figures_converter/decorators/base.rb, line 13
def run
  yield
end