The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pan::RCS - File manangement through RCS.

SYNOPSIS

 use Pan::RCS;

 my $src = Pan::RCS->init( '/src/dir' );
 my $rcs = Pan::RCS->new( '/path/conf' );

 $rcs->co();
 $rcs->ci();

CONFIGURATION

src and dst dir must be defined. See Pan::Path.

All files in src dir should be managed through RCS, including a manifest, where paths (relative to src) of managed files are recorded.

METHODS

co()

Check out files from src dir to dst dir. Returns invoking object.

ci()

Check in files from dst dir to src dir. Returns invoking object.

init( $dir )

Create a manifest of all regular files under $dir, and check them into RCS. Returns $dir.