initial import
[gitmo/MooseX-StrictConstructor.git] / lib / MooseX / StrictConstructor.pm
CommitLineData
32726d88 1package MooseX::StrictConstructor;
2
3use strict;
4use warnings;
5
6our $VERSION = '0.01';
7
8use Moose;
9use MooseX::Object::StrictConstructor;
10
11
12sub import
13{
14 my $caller = caller();
15
16 return if $caller eq 'main';
17
18 Moose::init_meta( $caller, 'MooseX::Object::StrictConstructor', 'Moose::Meta::Class' );
19
20 Moose->import( { into => $caller } );
21
22 return;
23}
24
25
26
271;
28
29__END__
30
31=pod
32
33=head1 NAME
34
35MooseX::StrictConstructor - The fantastic new MooseX::StrictConstructor!
36
37=head1 SYNOPSIS
38
39XXX - change this!
40
41 use MooseX::StrictConstructor;
42
43 my $foo = MooseX::StrictConstructor->new();
44
45 ...
46
47=head1 DESCRIPTION
48
49=head1 METHODS
50
51This class provides the following methods
52
53=head1 AUTHOR
54
55Dave Rolsky, C<< <autarch@urth.org> >>
56
57=head1 BUGS
58
59Please report any bugs or feature requests to C<bug-moosex-strictconstructor@rt.cpan.org>,
60or through the web interface at L<http://rt.cpan.org>. I will be
61notified, and then you'll automatically be notified of progress on
62your bug as I make changes.
63
64=head1 COPYRIGHT & LICENSE
65
66Copyright 2007 Dave Rolsky, All Rights Reserved.
67
68This program is free software; you can redistribute it and/or modify
69it under the same terms as Perl itself.
70
71=cut