method
invoke_method
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::OptionMerger
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