I having a strange issue where certain models in a rails engine I am using are getting duplicated in the object space.
(rdb:1) ObjectSpace.each_object(::Class).each { |klass| puts klass.to_s + ": " + klass.object_id.to_s if klass.to_s.eql?("DynamicFieldsets::Field") }
DynamicFieldsets::Field: 66866100
DynamicFieldsets::Field: 71836380
2479
When this happens, I cannot use is_a? or equality checks to test that an object is an instance of the Field class. The problem only happens in development and it looks like it may be caused by cache_classes being off. I think the object from the previous request is still in the object space but I am not sure how to remove it.
puts "#{klass.inspect}: #{klass.object_id}" if ...output? – Matheus Moreira Mar 6 '12 at 22:12DynamicFieldsets::Field? Where does it come from? – mu is too short Mar 6 '12 at 22:13