update version for release and update changes
[gitmo/Class-MOP.git] / lib / Class / MOP / Module.pm
1
2 package Class::MOP::Module;
3
4 use strict;
5 use warnings;
6
7 use Carp         'confess';
8 use Scalar::Util 'blessed';
9
10 our $VERSION   = '0.71_01';
11 $VERSION = eval $VERSION;
12 our $AUTHORITY = 'cpan:STEVAN';
13
14 use base 'Class::MOP::Package';
15
16 sub version {  
17     my $self = shift;
18     ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'VERSION' })};
19 }
20
21 sub authority {  
22     my $self = shift;
23     ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'AUTHORITY' })};
24 }
25
26 sub identifier {
27     my $self = shift;
28     join '-' => (
29         $self->name,
30         ($self->version   || ()),
31         ($self->authority || ()),
32     );
33 }
34
35 sub create {
36     my ( $class, %options ) = @_;
37
38     my $package_name = $options{package};
39
40     (defined $package_name && $package_name)
41         || confess "You must pass a package name";
42
43     my $code = "package $package_name;";
44     $code .= "\$$package_name\:\:VERSION = '" . $options{version} . "';"
45         if exists $options{version};
46     $code .= "\$$package_name\:\:AUTHORITY = '" . $options{authority} . "';"
47         if exists $options{authority};
48
49     eval $code;
50     confess "creation of $package_name failed : $@" if $@;
51
52     return; # XXX: should this return some kind of meta object? ~sartak
53 }
54
55 1;
56
57 __END__
58
59 =pod
60
61 =head1 NAME 
62
63 Class::MOP::Module - Module Meta Object
64
65 =head1 DESCRIPTION
66
67 This is an abstraction of a Perl 5 module, it is a superclass of
68 L<Class::MOP::Class>. A module essentially a package with metadata, 
69 in our case the version and authority. 
70
71 =head1 METHODS
72
73 =over 4
74
75 =item B<meta>
76
77 Returns a metaclass for this package.
78
79 =item B<initialize ($package_name)>
80
81 This will initialize a Class::MOP::Module instance which represents 
82 the module of C<$package_name>.
83
84 =item B<version>
85
86 This is a read-only attribute which returns the C<$VERSION> of the 
87 package for the given instance.
88
89 =item B<authority>
90
91 This is a read-only attribute which returns the C<$AUTHORITY> of the 
92 package for the given instance.
93
94 =item B<identifier>
95
96 This constructs a string of the name, version and authority.
97
98 =item B<create>
99
100 This creates the module; it does not return a useful result.
101
102 =back
103
104 =head1 AUTHORS
105
106 Stevan Little E<lt>stevan@iinteractive.comE<gt>
107
108 =head1 COPYRIGHT AND LICENSE
109
110 Copyright 2006-2008 by Infinity Interactive, Inc.
111
112 L<http://www.iinteractive.com>
113
114 This library is free software; you can redistribute it and/or modify
115 it under the same terms as Perl itself.
116
117 =cut