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