- Made relative regexps work
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
CommitLineData
cfd04b0c 1package Catalyst::ActionContainer;
2
3use strict;
4use base qw/Class::Accessor::Fast/;
5
6__PACKAGE__->mk_accessors(qw/part actions/);
7
8use overload (
9
10 # Stringify to path part for tree search
11 q{""} => sub { shift->{part} },
12
13);
14
15=head1 NAME
16
aa6283e4 17Catalyst::ActionContainer - Catalyst Action Container
cfd04b0c 18
19=head1 SYNOPSIS
20
21See L<Catalyst>.
22
23=head1 DESCRIPTION
24
25=head1 METHODS
26
27=over 4
28
29=item part
30
31=item actions
32
cfd04b0c 33=back
34
35=head1 AUTHOR
36
37Matt S. Trout
38
39=head1 COPYRIGHT
40
41This program is free software, you can redistribute it and/or modify it under
42the same terms as Perl itself.
43
44=cut
45
461;