Method: ActiveSupport::DescendantsTracker.reject!

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

.reject!(classes) ⇒ Object

:nodoc:



89
90
91
92
93
94
# File 'activesupport/lib/active_support/descendants_tracker.rb', line 89

def reject!(classes) # :nodoc:
  if @excluded_descendants
    classes.reject! { |d| @excluded_descendants.include?(d) }
  end
  classes
end