Class: ActiveSupport::OptionMerger

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/option_merger.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(context, options) ⇒ OptionMerger

Returns a new instance of OptionMerger.



7
8
9
# File 'lib/active_support/option_merger.rb', line 7

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)



12
13
14
15
# File 'lib/active_support/option_merger.rb', line 12

def method_missing(method, *arguments, &block)
  merge_argument_options! arguments
  @context.send!(method, *arguments, &block)
end