+++ /dev/null
-Changes
-MANIFEST
-Makefile.PL
-README
-t/lib/InsideOut/SubHash.pm
-t/lib/InsideOut/BaseMoose.pm
-t/lib/InsideOut/SubIO.pm
-t/lib/InsideOut/BaseArray.pm
-t/lib/InsideOut/BaseHash.pm
-t/lib/InsideOut/BaseIO.pm
-t/lib/InsideOut/SubMoose.pm
-t/lib/InsideOut/SubArray.pm
-t/pod.t
-t/sub.t
-t/00-load.t
-t/pod-coverage.t
-lib/MooseX/InsideOut/Meta/Class.pm
-lib/MooseX/InsideOut/Meta/Instance.pm
-lib/MooseX/InsideOut.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install.pm
-inc/Module/AutoInstall.pm
+++ /dev/null
-use inc::Module::Install 0.75;
-
-name 'MooseX-InsideOut';
-all_from 'lib/MooseX/InsideOut.pm';
-author 'Hans Dieter Pearcey <hdp@pobox.com>';
-
-build_requires 'Test::More';
-
-requires 'Moose' => '0.35';
-requires 'Hash::Util::FieldHash::Compat' => 0;
-requires 'Task::Weaken' => 0;
-
-auto_install;
-
-WriteAll;
-
+++ /dev/null
-MooseX-InsideOut 0.003
-
-INSTALLATION
-
-To install this module, run the following commands:
-
- perl Makefile.PL
- make
- make test
- make install
-
-SUPPORT AND DOCUMENTATION
-
-After installing, you can find documentation for this module with the
-perldoc command.
-
- perldoc MooseX::InsideOut
-
-You can also look for information at:
-
- RT, CPAN's request tracker
- http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-InsideOut
-
- AnnoCPAN, Annotated CPAN documentation
- http://annocpan.org/dist/MooseX-InsideOut
-
- CPAN Ratings
- http://cpanratings.perl.org/d/MooseX-InsideOut
-
- Search CPAN
- http://search.cpan.org/dist/MooseX-InsideOut
-
-
-COPYRIGHT AND LICENCE
-
-Copyright (C) 2008 Hans Dieter Pearcey
-
-This program is free software; you can redistribute it and/or modify it
-under the same terms as Perl itself.
-
--- /dev/null
+name = MooseX-InsideOut
+version = 0.003
+license = Perl_5
+author = Hans Dieter Pearcey <hdp@cpan.org>
+copyright_holder = Hans Dieter Pearcey <hdp@cpan.org>
+
+[Prereq]
+Class::MOP = 0.80
+Moose = 0.73
+Hash::Util::FieldHash::Compat = 0
+Task::Weaken = 0
+
+[@Classic]
+
+[PodPurler]
use warnings;
package MooseX::InsideOut;
+# ABSTRACT: inside-out objects with Moose
use MooseX::InsideOut::Meta::Class;
BEGIN { require Moose }
use Carp;
-our $VERSION = '0.003';
-
sub import {
my $class = shift;
1;
__END__
-=head1 NAME
-
-MooseX::InsideOut - inside-out objects with Moose
-
-=head1 VERSION
-
-Version 0.003
-
=head1 SYNOPSIS
package My::Object;
=back
-=head1 AUTHOR
-
-Hans Dieter Pearcey, C<< <hdp at pobox.com> >>
-
-=head1 BUGS
-
-Please report any bugs or feature requests to C<bug-moosex-insideout at rt.cpan.org>, or through
-the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-InsideOut>. I will be notified, and then you'll
-automatically be notified of progress on your bug as I make changes.
-
-=head1 SUPPORT
-
-You can find documentation for this module with the perldoc command.
-
- perldoc MooseX::InsideOut
-
-
-You can also look for information at:
-
-=over 4
-
-=item * RT: CPAN's request tracker
-
-L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-InsideOut>
-
-=item * AnnoCPAN: Annotated CPAN documentation
-
-L<http://annocpan.org/dist/MooseX-InsideOut>
-
-=item * CPAN Ratings
-
-L<http://cpanratings.perl.org/d/MooseX-InsideOut>
-
-=item * Search CPAN
-
-L<http://search.cpan.org/dist/MooseX-InsideOut>
-
-=back
-
-
-=head1 ACKNOWLEDGEMENTS
-
-
-=head1 COPYRIGHT & LICENSE
-
-Copyright 2008 Hans Dieter Pearcey.
-
-This program is free software; you can redistribute it and/or modify it
-under the same terms as Perl itself.
-
=cut