Posted By: postmodern
Date: 2008-04-24 07:18
Summary: reverserequire 0.1.0 Released
Project: reverse-require
reverserequire version 0.1.0 has been released!
reverse_require requires specific files from the gems which depend on a certain RubyGem and contain the specified path. Using reverse_require one can allow others to easily extend the functionality of a RubyGem. Simply add reverse_require into the code of your RubyGem:
reverse_require 'my_gem', 'some/path'
Then other gems which depend upon +my_gem+ merely have to provide <tt>some/path</tt> within their <tt>lib/</tt> directory, and reverse_require will load them all at run-time. This ability makes designing plug-in systems for a RubyGem trivial.
Changes:
### 0.1.0 / 2008-04-24
* Fixed a bug where the paths of RubyGems were not being saved, preventing reverse_require from properly loading files from gems. |
|