Posted By: postmodern
Date: 2009-01-13 20:35
Summary: reverse-require 0.3.1 Released
Project: reverse-require
reverse-require version 0.3.1 has been released!
reverse-require allows one to require files that ends with a specified path
from other RubyGems.
For instance, if one wanted to require the file 'mylibrary/extensions.rb'
from all RubyGems:
require 'reverse_require'
require_all 'mylibrary/extensions'
# => true
One can also require 'mylibrary/extensions.rb' only from RubyGems that
depend on the currently loaded version of the mylibrary Gem:
require_for 'mylibrary', 'mylibrary/extensions'
# => true
Changes:
### 0.3.1 / 2009-01-08
* Fixed the behavior of Gem.find_files_for when the specified _gem_ is not
loaded. |
|