S
Sylvain Daubert
Hi,
I'm trying to document C code from FFI wih RDoc.
This code uses lines like :
rbffi_TypeClass = rb_define_class_under(moduleFFI, "Type", rb_cObject);
rbffi_FunctionTypeClass = rb_define_class_under(moduleFFI,
"FunctionType", rbffi_TypeClass);
And RDoc guesses superclass of FunctionType to be TypeClass instead of Type.
Is it possible with Rdoc to force FunctionType's superclass to Type ?
Thanks,
Sylvain
I'm trying to document C code from FFI wih RDoc.
This code uses lines like :
rbffi_TypeClass = rb_define_class_under(moduleFFI, "Type", rb_cObject);
rbffi_FunctionTypeClass = rb_define_class_under(moduleFFI,
"FunctionType", rbffi_TypeClass);
And RDoc guesses superclass of FunctionType to be TypeClass instead of Type.
Is it possible with Rdoc to force FunctionType's superclass to Type ?
Thanks,
Sylvain