From: Dave Lee Date: 2006-04-08T05:11:12+09:00 Subject: require gem within c extension Hi, I have an Init_extension() function which includes the following line: rb_funcall(rb_mKernel, rb_intern("require"), 1, rb_str_new2("arrayfields")); The reason for not using rb_require() in this case is because it's not gem aware. The problem I'm experiencing is that execution is returning from Init_extension() upon trying to call require in this way. The code after this rb_funcall() invocation is not being executed. I figured I'd ask here before having to dissect the call sequence from rb_funcall(). thanks, Dave