-
-
11 Sep 2003 17:52:23 UTC
- Distribution: Parse-CVSEntries
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (615 / 0 / 0)
- Kwalitee
Bus factor: 0- 100.00% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (2.7KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Class::Accessor::Fast
- Date::Parse
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Parse::CVSEntries - parse a CVS/Entries file
SYNOPSIS
my $parsed = Parse::CVSEntries->new( 'CVS/Entries' ); for my $entry ($parsed->entries) { print $entry->name, " ", $entry->version, "\n"; }
DESCRIPTION
METHODS
new( $file )
Opens a file and parses it invoking
entry_class->new
to actually prepare the data.entries
Returns a list of all the entries in the parsed file.
entry_class
What class to instantiate for each entry. Defaults to
Parse::CVSEntry
Parse::CVSEntry
A representation of an entry in the entries file.
METHODS
All of these are just simple data accessors.
dir
name
version
modified
mtime
modified
as epoch secondsAUTHOR
Richard Clamp <richardc@unixbeard.net>
COPYRIGHT
Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
File::Find::Rule::CVS, cvs(1)
Module Install Instructions
To install Parse::CVSEntries, copy and paste the appropriate command in to your terminal.
cpanm Parse::CVSEntries
perl -MCPAN -e shell install Parse::CVSEntries
For more information on module installation, please visit the detailed CPAN module installation guide.