whitespace changes for attributes
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index 258cb15..9d41f4e 100644 (file)
@@ -1,37 +1,58 @@
 package Catalyst::ActionContainer;
 
-use strict;
-use base qw/Class::Accessor::Fast/;
+=head1 NAME
+
+Catalyst::ActionContainer - Catalyst Action Container
+
+=head1 SYNOPSIS
+
+See L<Catalyst>.
+
+=head1 DESCRIPTION
+
+This is a container for actions. The dispatcher sets up a tree of these
+to represent the various dispatch points in your application.
+
+=cut
 
-__PACKAGE__->mk_accessors(qw/part actions/);
+use Moose;
 
 use overload (
 
     # Stringify to path part for tree search
-    q{""} => sub { shift->{part} },
+    q{""} => sub { shift->part },
 
 );
 
-sub new {
-    my ( $class, $fields ) = @_;
-
-    $fields = { part => $fields, actions => {} } unless ref $fields;
+has part => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
+has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
 
-    $class->SUPER::new($fields);
-}
+around 'new' => sub {
+  my $next = shift;
+  my ($self, $params) = @_;
+  $params = { part => $params } unless ref $params;
+  $next->($self, $params);
+};
 
-=head1 NAME
+no Moose;
 
-Catalyst::ActionContainer - Catalyst Action Container
+sub get_action {
+    my ( $self, $name ) = @_;
+    return $self->actions->{$name} if defined $self->actions->{$name};
+    return;
+}
 
-=head1 SYNOPSIS
+sub add_action {
+    my ( $self, $action, $name ) = @_;
+    $name ||= $action->name;
+    $self->actions->{$name} = $action;
+}
 
-See L<Catalyst>.
+__PACKAGE__->meta->make_immutable;
 
-=head1 DESCRIPTION
+1;
 
-This is a container for actions. The dispatcher sets up a tree of these
-to represent the various dispatch points in your application.
+__END__
 
 =head1 METHODS
 
@@ -45,26 +66,10 @@ hashref to be populated via add_action later
 
 Returns an action from this container based on the action name, or undef
 
-=cut
-
-sub get_action {
-    my ( $self, $name ) = @_;
-    return $self->actions->{$name} if defined $self->actions->{$name};
-    return;
-}
-
 =head2 add_action($action, [ $name ])
 
 Adds an action, optionally providing a name to override $action->name
 
-=cut
-
-sub add_action {
-    my ( $self, $action, $name ) = @_;
-    $name ||= $action->name;
-    $self->actions->{$name} = $action;
-}
-
 =head2 actions
 
 Accessor to the actions hashref, containing all actions in this container.
@@ -74,6 +79,10 @@ Accessor to the actions hashref, containing all actions in this container.
 Accessor to the path part this container resolves to. Also what the container
 stringifies to.
 
+=head2 meta
+
+Provided by Moose
+
 =head1 AUTHOR
 
 Matt S. Trout