method

disable_clear!

disable_clear!()
public

No documentation available.

# File activesupport/lib/active_support/descendants_tracker.rb, line 50
        def disable_clear! # :nodoc:
          unless @clear_disabled
            @clear_disabled = true
            remove_method(:subclasses)
            remove_method(:descendants)
            @@excluded_descendants = nil
          end
        end