Dzil-ize all the .pod files so they can be pod-woven
[gitmo/Moose.git] / lib / Moose / Cookbook / Extending / Recipe2.pod
index 64f0f05..03c3909 100644 (file)
@@ -1,3 +1,9 @@
+package Moose::Cookbook::Extending::Recipe2;
+
+# ABSTRACT: Providing a role for the base object class
+
+__END__
+
 
 =pod
 
@@ -9,10 +15,6 @@ use Test::Requires {
 
 =end testing-SETUP
 
-=head1 NAME
-
-Moose::Cookbook::Extending::Recipe2 - Providing a role for the base object class
-
 =head1 SYNOPSIS
 
   package MooseX::Debugging;
@@ -61,19 +63,6 @@ C<setup_import_methods> for us, since we passed the C<base_class_roles>
 parameter. The generated C<init_meta> will in turn call
 L<Moose::Util::MetaRole::apply_base_class_roles|Moose::Util::MetaRole/apply_base_class_roles>.
 
-=head1 AUTHOR
-
-Dave Rolsky E<lt>autarch@urth.orgE<gt>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2009-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.
-
 =begin testing
 
 {