bump version to 0.72
[gitmo/Class-MOP.git] / lib / Class / MOP / Module.pm
CommitLineData
2243a22b 1
2package Class::MOP::Module;
3
4use strict;
5use warnings;
6
4edd0667 7use Carp 'confess';
2243a22b 8use Scalar::Util 'blessed';
9
cacb672e 10our $VERSION = '0.72';
d519662a 11$VERSION = eval $VERSION;
f0480c45 12our $AUTHORITY = 'cpan:STEVAN';
2243a22b 13
14use base 'Class::MOP::Package';
15
7f436b8c 16sub version {
17 my $self = shift;
8b49a472 18 ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'VERSION' })};
7f436b8c 19}
20
f0480c45 21sub authority {
22 my $self = shift;
8b49a472 23 ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'AUTHORITY' })};
f0480c45 24}
9d6dce77 25
f0480c45 26sub identifier {
27 my $self = shift;
28 join '-' => (
29 $self->name,
30 ($self->version || ()),
31 ($self->authority || ()),
32 );
33}
9d6dce77 34
4edd0667 35sub 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
2243a22b 551;
56
57__END__
58
59=pod
60
61=head1 NAME
62
63Class::MOP::Module - Module Meta Object
64
2243a22b 65=head1 DESCRIPTION
66
127d39a7 67This is an abstraction of a Perl 5 module, it is a superclass of
68L<Class::MOP::Class>. A module essentially a package with metadata,
69in our case the version and authority.
70
2243a22b 71=head1 METHODS
72
73=over 4
74
75=item B<meta>
76
127d39a7 77Returns a metaclass for this package.
78
79=item B<initialize ($package_name)>
80
81This will initialize a Class::MOP::Module instance which represents
82the module of C<$package_name>.
83
7f436b8c 84=item B<version>
85
b9d9fc0b 86This is a read-only attribute which returns the C<$VERSION> of the
87package for the given instance.
88
f0480c45 89=item B<authority>
90
b9d9fc0b 91This is a read-only attribute which returns the C<$AUTHORITY> of the
92package for the given instance.
93
f0480c45 94=item B<identifier>
95
96e38ba6 96This constructs a string of the name, version and authority.
b9d9fc0b 97
4edd0667 98=item B<create>
99
100This creates the module; it does not return a useful result.
101
2243a22b 102=back
103
1a09d9cc 104=head1 AUTHORS
2243a22b 105
106Stevan Little E<lt>stevan@iinteractive.comE<gt>
107
108=head1 COPYRIGHT AND LICENSE
109
69e3ab0a 110Copyright 2006-2008 by Infinity Interactive, Inc.
2243a22b 111
112L<http://www.iinteractive.com>
113
114This library is free software; you can redistribute it and/or modify
115it under the same terms as Perl itself.
116
ebce5539 117=cut