dzilize this distro
[gitmo/MooseX-Singleton.git] / lib / MooseX / Singleton / Role / Object.pm
index f745b2b..cb2a2ad 100644 (file)
@@ -2,8 +2,6 @@ package MooseX::Singleton::Role::Object;
 use Moose::Role;
 use Carp qw( carp );
 
-our $VERSION = '0.25';
-$VERSION = eval $VERSION;
 
 sub instance { shift->new }
 
@@ -38,14 +36,12 @@ no Moose::Role;
 
 1;
 
+# ABSTRACT: Object class role for MooseX::Singleton
+
 __END__
 
 =pod
 
-=head1 NAME
-
-MooseX::Singleton::Role::Object - Object class role for MooseX::Singleton
-
 =head1 DESCRIPTION
 
 This just adds C<instance> as a shortcut for C<new>.