method

method_missing

rails latest stable - Class: ActiveSupport::Delegation

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

method_missing(method, ...)
public

No documentation available.

# File activesupport/lib/active_support/delegation.rb, line 166
            def method_missing(method, ...)
              __target = #{target}
              if __target.nil? && !nil.respond_to?(method)
                nil
              elsif __target.respond_to?(method)
                __target.public_send(method, ...)
              else
                super
              end
            end