ext/rubypython_bridge/rubypython_bridge.c in rubypython-0.2.3 vs ext/rubypython_bridge/rubypython_bridge.c in rubypython-0.2.4

- old
+ new

@@ -2,10 +2,11 @@ VALUE mRubyPythonBridge; RUBY_EXTERN VALUE cRubyPyObject; RUBY_EXTERN VALUE cRubyPyModule; RUBY_EXTERN VALUE cRubyPyClass; +RUBY_EXTERN VALUE cBlankObject; /* call-seq: func(modname,funcname,*args) Given a python module name _modname_ and a function name _funcname_ calls the given function @@ -82,9 +83,10 @@ mRubyPythonBridge=rb_define_module("RubyPythonBridge"); rb_define_module_function(mRubyPythonBridge,"func",func_with_module,-2); rb_define_module_function(mRubyPythonBridge,"start",rp_start,0); rb_define_module_function(mRubyPythonBridge,"stop",rp_stop,0); rb_define_module_function(mRubyPythonBridge,"import",rp_import,1); + Init_BlankObject(); Init_RubyPyObject(); Init_RubyPyModule(); Init_RubyPyClass(); Init_RubyPyFunction(); Init_RubyPyError(); \ No newline at end of file