~ubuntu-branches/ubuntu/raring/libmoose-perl/raring-proposed

« back to all changes in this revision

Viewing changes to lib/Moose/Meta/Role/Composite.pm

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-02-05 17:18:51 UTC
  • mfrom: (1.1.59)
  • Revision ID: package-import@ubuntu.com-20120205171851-cxiawm4ii9oyz9jv
Tags: 2.0402-1
* New upstream release
* Bump upstream copyright year
* Bump debhelper compat level to 9

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  $Moose::Meta::Role::Composite::AUTHORITY = 'cpan:STEVAN';
4
4
}
5
5
{
6
 
  $Moose::Meta::Role::Composite::VERSION = '2.0401';
 
6
  $Moose::Meta::Role::Composite::VERSION = '2.0402';
7
7
}
8
8
 
9
9
use strict;
74
74
    $class->_new(\%params);
75
75
}
76
76
 
77
 
# This is largely a cope of what's in Moose::Meta::Role (itself
 
77
# This is largely a copy of what's in Moose::Meta::Role (itself
78
78
# largely a copy of Class::MOP::Class). However, we can't actually
79
79
# call add_package_symbol, because there's no package to which which
80
80
# add the symbol.
166
166
 
167
167
=head1 VERSION
168
168
 
169
 
version 2.0401
 
169
version 2.0402
170
170
 
171
171
=head1 DESCRIPTION
172
172
 
225
225
 
226
226
=head1 COPYRIGHT AND LICENSE
227
227
 
228
 
This software is copyright (c) 2011 by Infinity Interactive, Inc..
 
228
This software is copyright (c) 2012 by Infinity Interactive, Inc..
229
229
 
230
230
This is free software; you can redistribute it and/or modify it under
231
231
the same terms as the Perl 5 programming language system itself.