method
method_missing
method_missing(method, *args, &block)
private
Hide source
# File activesupport/lib/active_support/whiny_nil.rb, line 44 def method_missing(method, *args, &block) if klass = METHOD_CLASS_MAP[method] raise_nil_warning_for klass, method, caller else super end end