whitespace changes for attributes
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index 63b8fc9..9d41f4e 100644 (file)
@@ -1,8 +1,5 @@
 package Catalyst::ActionContainer;
 
-use strict;
-use base qw/Class::Accessor::Fast/;
-
 =head1 NAME
 
 Catalyst::ActionContainer - Catalyst Action Container
@@ -18,24 +15,26 @@ 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;
-
-    $class->SUPER::new($fields);
-}
+has part => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
+has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
 
+around 'new' => sub {
+  my $next = shift;
+  my ($self, $params) = @_;
+  $params = { part => $params } unless ref $params;
+  $next->($self, $params);
+};
 
+no Moose;
 
 sub get_action {
     my ( $self, $name ) = @_;
@@ -49,6 +48,8 @@ sub add_action {
     $self->actions->{$name} = $action;
 }
 
+__PACKAGE__->meta->make_immutable;
+
 1;
 
 __END__
@@ -78,9 +79,13 @@ 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 
+Matt S. Trout
 
 =head1 COPYRIGHT