method

invoke_method

rails latest stable - Class: ActiveSupport::OptionMerger

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

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