Path: | History.txt |
Last Update: | Fri Oct 15 21:48:59 +0000 2010 |
* comment stripper much more sane to fix problems on certain linux distros * fixed a nit with older C compilers.
* Hoe'd the Rakefile. :P
* Removed VALUE from @types because it is now in @@type_map. * Tweak added for mingw32.
* C builder can now be used directly for other foreign language glue. * Pretty much all (c) functions are plain argument style, not argc/argv. * Added Nathaniel and Dan's patches for windows support. * Added VALUE as a default known type. * Improved testing under $DEBUG. * Deprecated $INLINE_FLAGS and $INLINE_LIBS are dead.
* Fixed a number of issues wrt testing. * Cleaned up and cached certain calculations. * Some windows compiler fixes went in, but MS compiler is a PITA still.
* Switched to install for Makefile. * Lots of minor cleanup. * Added add_to_init to extend init methods. Great hack! * Added 2 demo files used in the rubyconf 2005 presentation.
* Fixed example in README.txt. OOPS!
* Changed inline to take the language and a hash of options. * Still backwards compatible, for now, and emits a warning. * Options are available via the builder passed to your block.
* Modified caller discovery, yet again, due to changes in ruby 1.8.3. * More compatible and clean with non-gems systems.
* Fixed a line number issue when using c_raw w/ multi-line signatures. * Inline can now be invoked multiple times per class. * Filled out rdoc. * Fixed some old tests.
* Fixed a bug w/ unit tests involving caching of rootdir. * Added a minor tweak to the file discovery when called through eval. * Moved the packaging code into inline.rb in order to get rubygems wrapped scripts to work again (wrapper was breaking due to __FILE__ != $0).
* Added inline_package, which helps you package inlined code into gems. * inline_package also generates a Rakefile for you if you need it. * inline.rb now (only) loads packaged code when present.
* Added double to typemap. Thanks Phil Tomson! * Added a minor hack to get cygwin to work right--lemme know pls.
* Gemified * Added #line preprocessor directives to make debugging inside your ruby file practical. * Added uninstall rule to Makefile * Inline::C now generates classes directly instead of included modules. * Better execeptions are thrown on error. * Incorporated a bunch of changes from Jonathan Paisley: * Generation of inline'd class methods. (c_singleton and c_raw_singleton) * Fixed problems with nested module/classes. * Inline can now extend the same class multiple times.
* Smarter require/instantiation to accomodate other languages better. * Fixed a logic error where running good code, then bad, then bad again ran the original good code.
* Extended API of Inline::C with prefix(code). * Documented all public API.
* Cleaned a lot of code and tests. * Removed nearly all tags.
* I let references to ZenTestUnit slip through the release. Removed. * Converted History.txt to ZenWeb format.
* Complete rewrite with new design. * Multiple language support, works with C/C++ out of the box. * Multiple functions per compilation unit, now allowing entire classes to be defined and linked in one unit.
* I still need to write much better/complete documentation.
* Touch all generated files to avoid unnecessary diffs.
* Added good profiling example in tutorial/*. * Added profiling strategy in README.txt.
* Paired with Doug Beaver <snarly@beaver.net>
* Fixed a bug in inline.rb where it was comparing against inline.rb, not the caller. * Tweaked example.rb to take the number of iterations as an option.
* Added inline_c_raw to replace Inline.inline. * Removed module Inline as a whole. This gets rid of some * major version incompatibilities, tons of duplicate code, and * just seems to make things happier.
* Added a fix from Michael Scholz to fix the use of $0 for file test. * Added private and public declarations since we are invading * class Module. * Fixed tests... oops! * Lots of clean up...
* Reviewed by Doug Beaver <snarly@beaver.net>
* Minor fix to get working on MacOS X (.so vs .bundle). * Downgraded typemap to be compatible with 1.6.x.
* Paired w/ Doug Beaver <snarly@beaver.net>
* Added inline_c, a "compile-time" version of inline. Massively enhanced, this version has a limited form of C function parsing.
* Deprecated Inline#inline for Module#inline_c. To be removed by 2.1.0. * Extended example.rb to include a fully written inlined C function.
* Updated README.txt and improved some of the documentation. * Added test and clean rules to Makefile. * Removed the copious warnings if running ruby < 1.7.2.
* Paired w/ Doug Beaver <snarly@beaver.net>
* Aliased methods are now inlined as well. 250x faster. * ONLY on ruby 1.7*. Warns on ruby < 1.7. * Added a makefile to automate running of all different benchmarks.
* Improved example to include an aliased method testcase.
* Only compiles the generated code if it was different from the previous version.
* Improved security: Checks group and global write on home directory.
* Added a prelude argument for header and datatype declarations.
* Only output stuff if invoked verbose (ie 'ruby -v ./example.rb'). * Added some compatibility code for windows. * Declared requirement on POSIX system.
* Improved security model for UNIX. Still not sure about windoze. * Fixed History.txt to be accurate, gave example in README.
* Released to sourceforge!
* A number of very minor bug fixes from IRC sessions w/ others.
* Birthday!