Archive-Merged

 view release on metacpan or  search on metacpan

lib/Archive/Dir.pm  view on Meta::CPAN


=head1 METHODS

=cut

sub new {
    my ($class, $directory) = @_;
    my $self = {
        directory => dir($directory),
    };
    bless $self => $class;
    $self
};

sub directory {
    $_[0]->{directory}
};

sub contains_file {
    -f $_[0]->directory->file($_[1])
};

lib/Archive/Merged.pm  view on Meta::CPAN

Creates a new archive as the merged view of one or more archives
or directories.

=cut

sub new {
    my ($class, @archives) = @_;
    my $self = {
        archives => \@archives,
    };
    bless $self => $class;
    $self
};

=head2 C<< ->directory >>

=cut

sub directory {
    undef
};

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.811 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )