method

method_missing

method_missing(method, ...)
public

No documentation available.

# File activesupport/lib/active_support/delegation.rb, line 164
            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