File::Corresponding::File::Found - A file that was found in the file


File-Corresponding documentation Contained in the File-Corresponding distribution.

Index


Code Index:

NAME

Top

File::Corresponding::File::Found - A file that was found in the file system, given a matching profile

PROPERTIES

Top

file : Path::Class

File that was found.

matching_profile : File::Corresponding::File::Profile

Profile that was used to match against.


File-Corresponding documentation Contained in the File-Corresponding distribution.
use strict;
package File::Corresponding::File::Found;
use Moose;

use Data::Dumper;
use MooseX::Types::Path::Class qw( Dir File );

use File::Corresponding::File::Profile;



has file => (
    is => 'ro',
    isa => File,
    coerce => 1,
);




has matching_profile => (is => 'ro', isa => 'File::Corresponding::File::Profile');



1;



__END__