lots of documentation changes, some refactoring too
[gitmo/Class-MOP.git] / lib / Class / MOP / Module.pm
index eee05f5..1611362 100644 (file)
@@ -6,7 +6,8 @@ use warnings;
 
 use Scalar::Util 'blessed';
 
-our $VERSION = '0.01';
+our $VERSION   = '0.02';
+our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Class::MOP::Package';
 
@@ -22,6 +23,20 @@ sub version {
     ${$self->get_package_symbol('$VERSION')};
 }
 
+sub authority {  
+    my $self = shift;
+    ${$self->get_package_symbol('$AUTHORITY')};
+}
+
+sub identifier {
+    my $self = shift;
+    join '-' => (
+        $self->name,
+        ($self->version   || ()),
+        ($self->authority || ()),
+    );
+}
+
 1;
 
 __END__
@@ -44,6 +59,18 @@ Class::MOP::Module - Module Meta Object
 
 =item B<version>
 
+This is a read-only attribute which returns the C<$VERSION> of the 
+package for the given instance.
+
+=item B<authority>
+
+This is a read-only attribute which returns the C<$AUTHORITY> of the 
+package for the given instance.
+
+=item B<identifier>
+
+This constructs a string of the name, version and authrity.
+
 =back
 
 =head1 AUTHORS