Object.subclasses_of includes anonymous subclasses.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7590 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-09-23 01:09:20 +00:00
parent 2d02199e15
commit ea45680118
4 changed files with 22 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Object.subclasses_of includes anonymous subclasses. [Jeremy Kemper]
* Fixed that pluralizing an empty string should return the same empty string, not "s" #7720 [josh]
* Added call to inspect on non-string classes for the logger #8533 [codahale]

View File

@@ -5,17 +5,21 @@ class Object
def subclasses_of(*superclasses) #:nodoc:
subclasses = []
# Exclude this class unless it's a subclass of our supers and is defined.
# We check defined? in case we find a removed class that has yet to be
# garbage collected. This also fails for anonymous classes -- please
# submit a patch if you have a workaround.
ObjectSpace.each_object(Class) do |k|
next unless # Exclude this class unless
superclasses.any? { |superclass| k < superclass } && # It *is* a subclass of our supers
eval("defined?(::#{k}) && ::#{k}.object_id == k.object_id") # It *is* defined
# Note that we check defined? in case we find a removed class that has
# yet to be garbage collected.
subclasses << k
if superclasses.any? { |superclass| k < superclass } &&
(k.name.blank? || eval("defined?(::#{k}) && ::#{k}.object_id == k.object_id"))
subclasses << k
end
end
subclasses
end
def extended_by #:nodoc:
ancestors = class << self; ancestors end
ancestors.select { |mod| mod.class == Module } - [ Object, Kernel ]

View File

@@ -6,6 +6,7 @@ require 'active_support'
# Wrap tests that use Mocha and skip if unavailable.
def uses_mocha(test_name)
require 'rubygems'
gem 'mocha', '>= 0.5.5'
require 'mocha'
yield
rescue LoadError

View File

@@ -97,7 +97,14 @@ class ClassExtTest < Test::Unit::TestCase
classes = Object.subclasses_of(ClassI, ClassK)
assert_equal %w(ClassJ Nested::ClassL), classes.collect(&:to_s).sort
end
def test_subclasses_of_doesnt_find_anonymous_classes
assert_equal [], Object.subclasses_of(Foo)
bar = Class.new(Foo)
assert_nothing_raised do
assert_equal [bar], Object.subclasses_of(Foo)
end
end
end
class ObjectTests < Test::Unit::TestCase