module ActiveAny::Delegation
Public Instance Methods
respond_to_missing?(name, _)
click to toggle source
Calls superclass method
# File lib/active_any/relation/delegation.rb, line 98 def respond_to_missing?(name, _) super || @klass.respond_to?(name) end