Merging of gsoc_breadboard
André Walker [Wed, 6 Jul 2011 23:12:26 +0000 (20:12 -0300)]
1  2 
lib/Catalyst.pm
lib/Catalyst/Container.pm

diff --cc lib/Catalyst.pm
Simple merge
@@@ -43,9 -43,17 +43,17 @@@ has sub_container_class => 
      isa     => LoadableClass,
      is      => 'ro',
      coerce  => 1,
 -    default => 'Bread::Board::Container',
 +    default => 'Catalyst::SubContainer',
  );
  
+ =head1 NAME
+ Catalyst::Container - IOC for Catalyst components
+ =head1 METHODS
+ =cut
  sub BUILD {
      my $self = shift;
  
@@@ -393,4 -458,32 +458,23 @@@ sub _config_substitutions 
      return $arg;
  }
  
 -=head2 get_component
 -
 -=cut
 -
 -sub get_component {
 -    my ( $self, $type, $name, $args ) = @_;
 -    return $self->get_sub_container($type)->resolve( service => $name, parameters => { context => $args } );
 -}
 -
+ =head1 AUTHORS
+ =over 4
+ =item Justin Hunter (arcanez)
+ =item AndrĂ© Walker (andrewalker)
+ =back
+ Based on L<Catalyst::Plugin::ConfigLoader>, by Brian Cassidy.
+ =head1 LICENSE
+ This library is free software. You can redistribute it and/or modify it under
+ the same terms as Perl itself.
+ =cut
  1;