no trailing whitespace
[gitmo/MooseX-Types.git] / lib / MooseX / Types / Wrapper.pm
index b3fc48a..60a8ebd 100644 (file)
@@ -1,11 +1,7 @@
-=head1 NAME
-
-MooseX::Types::Wrapper - Wrap exports from a library
+package MooseX::Types::Wrapper;
 
-=cut
+#ABSTRACT: Wrap exports from a library
 
-package MooseX::Types::Wrapper;
-our $VERSION = "0.25";
 use Moose;
 
 use Carp::Clan      qw( ^MooseX::Types );
@@ -34,11 +30,11 @@ sub import {
         croak qq($class expects an array reference as import spec)
             unless ref $libraries{ $l } eq 'ARRAY';
 
-        my $library_class 
+        my $library_class
           = ($l eq 'Moose' ? 'MooseX::Types::Moose' : $l );
         Class::MOP::load_class($library_class);
 
-        $library_class->import({ 
+        $library_class->import({
             -into    => scalar(caller),
             -wrapper => $class,
         }, @{ $libraries{ $l } });
@@ -52,10 +48,6 @@ sub import {
 
 L<MooseX::Types>
 
-=head1 AUTHOR
-
-See L<MooseX::Types/AUTHOR>.
-
 =head1 LICENSE
 
 This program is free software; you can redistribute it and/or modify