RubyForge Project News http://rubyforge.org RubyForge Project News Highlights RubyInline 3.8.4 Released http://rubyforge.org/forum/forum.php?forum_id=35893 RubyInline version 3.8.4 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.8.4 / 2009-12-09 * 1 bug fix: * Clean up example.rb and force removal of ~/.ruby_inline RubyInline Ryan Davis 2009-12-10T11:47:12+00:00 RubyInline 3.8.3 Released http://rubyforge.org/forum/forum.php?forum_id=34100 RubyInline version 3.8.3 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.8.3 / 2009-08-07 * 1 minor enhancement: * Added Inline::C#add_static to make consts cleaner RubyInline Ryan Davis 2009-08-12T12:33:48+00:00 RubyInline 3.8.2 Released http://rubyforge.org/forum/forum.php?forum_id=33278 RubyInline version 3.8.2 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.8.2 / 2009-06-23 * 1 bug fix: * ruby 1.9 expands __FILE__ and broke my tests RubyInline Ryan Davis 2009-06-26T07:08:55+00:00 RubyInline 3.8.1 Released http://rubyforge.org/forum/forum.php?forum_id=27983 RubyInline version 3.8.1 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.8.1 / 2008-10-24 * 1 minor enhancement * Inline registers all classes for hoe's INLINE=1 packaging feature. RubyInline Ryan Davis 2008-11-03T07:28:58+00:00 RubyInline 3.8.0 Released http://rubyforge.org/forum/forum.php?forum_id=27968 RubyInline version 3.8.0 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.8.0 / 2008-10-22 * 8 minor enhancements: * Inline::C now uses ZenTestMapping to automatically map C functions to ruby names. * Inline::C#map_c_const can now map to a ruby constant name. * Added accessors for members of Data_Wrap_Structs. See Inline::C#accessor. * Added long long, unsigned long long, off_t types to built-in type map. * Added #alias_type_converter and #remove_type_converter. * Consider MinGW (mingw) as valid Windows platform. * Properly fallback to all the environment options under Windows. #22511. * Properly join path under OS with drive letters. #22292. * 1 bug fixes: * Inline::C now uses rb_define_alloc_func(). RubyInline Ryan Davis 2008-11-03T07:27:12+00:00 RubyInline 3.7.0 Released http://rubyforge.org/forum/forum.php?forum_id=25067 RubyInline version 3.7.0 has been released! Inline allows you to write foreign code within your ruby code. It automatically determines if the code in question has changed and builds it only when necessary. The extensions are then automatically loaded into the class/module that defines it. You can even write extra builders that will allow you to write inlined code in any language. Use Inline::C as a template and look at Module#inline for the required API. Changes: ### 3.7.0 / 2008-06-09 * 1 major enhancements: * Removed inline_package in favor of hoe's packaging. * 2 minor enhancements: * Switched from warn/exit to abort to fix buffering for error messages. * Improved some error messages. * 2 bug fixes: * Fixes for rubinius. * Fixes for 1.9. RubyInline Ryan Davis 2008-06-12T03:55:33+00:00 RubyInline 3.6.7 Released http://rubyforge.org/forum/forum.php?forum_id=22888 RubyInline version 3.6.7 has been released! Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever). The code is compiled and run on the fly when needed. Using the package_inline tool Inline allows you to package up your inlined object code for distribution to systems without a compiler. Changes: ### 3.6.7 / 2008-03-20 * 3 minor enhancements: * Added ability to work entirely without .ruby_inline dir. Thanks Kevin Clark! * Updated history, readme, and rakefile for new hoe abilities. * Cleaned up some really ugly schlock. Man, compiling sucks! * 2 bug fixes: * Fixes for 1.9. * Add -I for platform-specific header dir (for ruby/config.h). RubyInline Ryan Davis 2008-03-22T10:28:06+00:00 RubyInline 3.6.6 Released http://rubyforge.org/forum/forum.php?forum_id=20190 RubyInline version 3.6.6 has been released! Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever). The code is compiled and run on the fly when needed. Changes: ### 3.6.6 / 2007-12-27* 1 minor enhancement: * Enhanced windows support thanks to Luis Lavena. RubyInline Ryan Davis 2007-12-27T09:55:04+00:00 RubyInline 3.6.5 Released http://rubyforge.org/forum/forum.php?forum_id=18843 RubyInline version 3.6.5 has been released! Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever). The code is compiled and run on the fly when needed. Changes: ### 3.6.5 / 2007-11-08* 1 minor enhancement: * Quick fix for OSX 10.5 native ruby (should be fixed in 10.5.2). RubyInline Ryan Davis 2007-11-09T12:51:31+00:00 RubyInline 3.6.4 Released http://rubyforge.org/forum/forum.php?forum_id=16917 RubyInline version 3.6.4 has been released! Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever). The code is compiled and run on the fly when needed. Changes: ### 3.6.4 / 2007-08-20* 1 minor enhancement: * Added ability to include ruby.h last. Thanks to Luc Heinrich. RubyInline Ryan Davis 2007-08-21T06:51:33+00:00