Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Config / GitLike / Cascaded.pm
1 package Config::GitLike::Cascaded;
2 use Any::Moose;
3 use Cwd;
4 use File::Spec;
5
6 extends 'Config::GitLike';
7
8 has 'cascade' => (
9     default => 1,
10 );
11
12 __PACKAGE__->meta->make_immutable;
13 no Any::Moose;
14
15 1;
16
17 __END__
18
19 =head1 NAME
20
21 Config::GitLike::Cascaded - git-like config file parsing with cascaded inheritance
22
23 =head1 SYNOPSIS
24
25 This module exists purely for backwards compatability; its use is
26 deprecated, and will be removed in a future release.
27
28 =head1 DESCRIPTION
29
30 This module simply defaults L<Config::GitLike/cascaded> to a true
31 value.
32
33 =head1 SEE ALSO
34
35 L<Config::GitLike|Config::GitLike>
36
37 =head1 LICENSE
38
39 You may modify and/or redistribute this software under the same terms
40 as Perl 5.8.8.
41
42 =head1 COPYRIGHT
43
44 Copyright 2010 Best Practical Solutions, LLC
45
46 =head1 AUTHORS
47
48 Alex Vandiver <alexmv@bestpractical.com>,
49 Christine Spang <spang@bestpractical.com>