Method: ActiveSupport::DescendantsTracker#descendants

Defined in:
activesupport/lib/active_support/descendants_tracker.rb

#descendantsObject



107
108
109
110
# File 'activesupport/lib/active_support/descendants_tracker.rb', line 107

def descendants
  subclasses = DescendantsTracker.reject!(self.subclasses)
  subclasses.concat(subclasses.flat_map(&:descendants))
end