Mixing C extension classes with ruby classes

I have a C extension that defines a module and two classes in that
module. I was looking at mongrel and mongrel also has a mongrel.rb
file that defines the module and classes that are also defined in the
C extension. However when I define the module in modulename.rb which
also has a C extension that defines the module using rb_define_module,
the definition in modulename.rb takes precedence, and C module/class
definitions disappear.

I can post some code if needed, but maybe it’s just something simple I
am missing.

Chris

Hi,

At Wed, 20 Sep 2006 09:51:34 +0900,
snacktime wrote in [ruby-talk:215221]:

I have a C extension that defines a module and two classes in that
module. I was looking at mongrel and mongrel also has a mongrel.rb
file that defines the module and classes that are also defined in the
C extension. However when I define the module in modulename.rb which
also has a C extension that defines the module using rb_define_module,
the definition in modulename.rb takes precedence, and C module/class
definitions disappear.

Do you require modulename.so in modulename.rb?