Finder 0.3.0 has been released.
Finder is a general purpose file finder for Ruby. Finder can search
RubyGems, Roll libraries and Ruby’s standard $LOAD_PATH and system data
directory for the active or the most current library files. It is
especially useful for implementing library-based plugin systems.
- Website: http://rubyworks.github.com/finder
- Source Code: GitHub - rubyworks/finder: File finder for searching Gems, Rolls and Site locations
- Mailing List: http://groups.google.com/rubyworks-mailinglist
This is a significant release in that the behavior of Find.load_path
has changed to return absolute paths by default. To get relative paths
set the :relative options to true. However, if you are doing that
you likely want to use the new Find.feature method which specifically
searches for requirable files and returns relative paths by default.
Changes:
- Find.load_path now returns absolute paths by default.
- Adds option
:relative=>trueto get relative paths. - Adds new
Find.featurefor finding requirable files. - New Base module provides shared methods to all systems.