Release Name: 0.3
Notes:
This project serves as an "simple" example on how to embed
ruby into c++. Your can freely use this as a skeleton for
your own projects, No need to mention my name :-)
Changes:
version 0.3, 20-Sep-2003
* renamed everything (attempt to make things more intuitive):
'insert' -> 'execute'
'repaint' -> 'callback'
'View' -> 'ExampleBridgeCpp'
'Impl' -> 'ExampleBridgeCppImpl'
'Redirect' -> 'ExampleBridgeRuby'
'RUBY_CPP' -> 'NAMESPACE_RUBY'
'EMBEDRUBY' -> 'NAMESPACE_LIBRARY'
'RubyError' -> 'Error'
'ViewQt' -> 'ExampleCpp'
'RubyView' -> 'ExampleRuby'
'redirect.h' -> 'example_bridge_ruby.h'
'redirect.cpp' -> 'example_bridge_ruby.cpp'
'redirect.i' -> 'example_bridge_ruby_wrap.i'
'Embed' -> 'Wrapper'
* removed the manual setup stuff, so that only the
example of how to use SWIG is there (simplifies things).
* moved AEditor from sourceforge.net to rubyforge.org.
* using rb_path2class(klass_name) instead of
rb_const_get(rb_cObject, rb_intern(klass_name)).
|