Class: ActiveSupport::OptionMerger

Inherits:
Object
  • Object
show all
Defined in:
lib/vendor/i18n/test/with_options.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(context, options) ⇒ OptionMerger

Returns a new instance of OptionMerger.



18
19
20
# File 'lib/vendor/i18n/test/with_options.rb', line 18

def initialize(context, options)
  @context, @options = context, options
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *arguments, &block) ⇒ Object (private)



23
24
25
26
27
28
29
30
31
32
# File 'lib/vendor/i18n/test/with_options.rb', line 23

def method_missing(method, *arguments, &block)
  if arguments.last.is_a?(Proc)
    proc = arguments.pop
    arguments << lambda { |*args| @options.deep_merge(proc.call(*args)) }
  else
    arguments << (arguments.last.respond_to?(:to_hash) ? @options.deep_merge(arguments.pop) : @options.dup)
  end

  @context.__send__(method, *arguments, &block)
end