module ActiveSupport::Deprecation::InstanceDelegator::ClassMethods

def include(included_module)

:nodoc:
def include(included_module)
  included_module.instance_methods.each { |m| method_added(m) }
  super
end

def method_added(method_name)

def method_added(method_name)
  singleton_class.delegate(method_name, to: :instance)
end