method

respond_to_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.

respond_to_missing?(name, include_private = false)
public

No documentation available.

# File activesupport/lib/active_support/delegation.rb, line 158
            def respond_to_missing?(name, include_private = false)
              # It may look like an oversight, but we deliberately do not pass
              # +include_private+, because they do not get delegated.

              return false if name == :marshal_dump || name == :_dump
              #{target}.respond_to?(name) || super
            end