method

invoke_method

invoke_method(method, arguments, options, &block)
private

No documentation available.

# File activesupport/lib/active_support/option_merger.rb, line 32
        def invoke_method(method, arguments, options, &block)
          if options
            @context.__send__(method, *arguments, **options, &block)
          else
            @context.__send__(method, *arguments, &block)
          end
        end