method
method_missing
v2.2.1 -
Show latest stable
- Class:
ActiveSupport::OptionMerger
method_missing(method, *arguments, &block)private
No documentation available.
# File activesupport/lib/active_support/option_merger.rb, line 12
def method_missing(method, *arguments, &block)
arguments << (arguments.last.respond_to?(:to_hash) ? @options.deep_merge(arguments.pop) : @options.dup)
@context.__send__(method, *arguments, &block)
end