each()
public

No documentation available.

# File activesupport/lib/active_support/descendants_tracker.rb, line 85
      def each
        @refs.reject! do |ref|
          yield ref.__getobj__
          false
        rescue WeakRef::RefError
          true
        end
        self
      end