The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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.