Finder v0.3.0 released

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.

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=>true to get relative paths.
  • Adds new Find.feature for finding requirable files.
  • New Base module provides shared methods to all systems.