Class object creation and scope

It appears that class objects (created via Class.new) are somewhat
unusual.
I’m trying to write some code to inject some non-Ruby data into these
objects. I’m worried about what happens at GC time, so I need to use
Data_Wrap_Struct() to create the class objects so that I can register my
memory cleanup functions with Ruby.

However, this technique doesn’t seem to work. If I try to create a class
object using:

Data_Wrap_Struct(rb_cClass, 0, ReleaseClassObject, my_data);

Ruby complains with a bizarre TypeError exception: “wrong argument type
Class (expected Class)”.

I’ve tried some other workarounds involving the use of
rb_define_alloc_func(), which works fine for non class objects, but
there
seems to be something special about how Ruby handles class objects.

A secondary question: what’s the lifetime of a class object in Ruby? Are
these things ever garbage collected?

Thanks
-John

I just took a look at rb_class_boot(), and it looks like I can’t make a
class object a T_DATA type. Ugh.

So it looks like my only hope is that class objects are never GC’d …
pointers here would be super-helpful.

Thanks
-John