method
method_missing
rails latest stable - Class:
ActiveSupport::Delegation
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