Dzil-ize all the .pod files so they can be pod-woven
[gitmo/Moose.git] / lib / Moose / Cookbook / Basics / Recipe10.pod
index db4c25b..93797b4 100644 (file)
@@ -1,9 +1,11 @@
+package Moose::Cookbook::Basics::Recipe10;
 
-=pod
+# ABSTRACT: Using BUILDARGS and BUILD to hook into object construction
+
+__END__
 
-=head1 NAME
 
-Moose::Cookbook::Basics::Recipe10 - Using BUILDARGS and BUILD to hook into object construction
+=pod
 
 =head1 SYNOPSIS
 
@@ -114,17 +116,4 @@ The C<BUILDARGS> method lets us expand on Moose's built-in parameter
 handling for constructors. The C<BUILD> method lets us implement
 logical constraints across the whole object after it is created.
 
-=head1 AUTHOR
-
-Dave Rolsky E<lt>autarch@urth.orgE<gt>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2006-2010 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
 =cut