Changeset 3 in mp3-find for trunk/lib/MP3/Find/Filesystem.pm


Ignore:
Timestamp:
01/30/06 02:05:25 (18 years ago)
Author:
peter
Message:
  • updated MANIFEST to include all lib/* and Makefile.PL to include bin/mp3find
  • doc updates to *.pm and mp3find
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/MP3/Find/Filesystem.pm

    r1 r3  
    7373# module return 
    74741; 
     75 
     76=head1 NAME 
     77 
     78MP3::Find::Filesystem - File::Find-based backend to MP3::Find 
     79 
     80=head1 SYNOPSIS 
     81 
     82    use MP3::Find::Filesystem; 
     83    my $finder = MP3::Find::Filesystem->new; 
     84     
     85    my @mp3s = $finder->find_mp3s( 
     86        dir => '/home/peter/music', 
     87        query => { 
     88            artist => 'ilyaimy', 
     89            album  => 'myxomatosis', 
     90        }, 
     91        ignore_case => 1, 
     92    ); 
     93 
     94=head1 REQUIRES 
     95 
     96L<File::Find>, L<MP3::Info>, L<Scalar::Util> 
     97 
     98=head1 DESCRIPTION 
     99 
     100This module implements the C<search> method from L<MP3::Find::Base> 
     101using a L<File::Find> based search of the local filesystem. 
     102 
     103=head2 Special Options 
     104 
     105There are no special options for B<MP3::Find::Filesystem>. See 
     106L<MP3::Find> for the description of the general options. 
     107 
     108=head1 SEE ALSO 
     109 
     110L<MP3::Find>, L<MP3::Find::DB> 
     111 
     112=head1 AUTHOR 
     113 
     114Peter Eichman <peichman@cpan.org> 
     115 
     116=head1 COPYRIGHT AND LICENSE 
     117 
     118Copyright (c) 2006 by Peter Eichman. All rights reserved. 
     119 
     120This program is free software; you can redistribute it and/or 
     121modify it under the same terms as Perl itself. 
     122 
     123=cut 
Note: See TracChangeset for help on using the changeset viewer.