dzil-ize
hdp [Sat, 4 Apr 2009 05:43:32 +0000 (05:43 +0000)]
MANIFEST [deleted file]
Makefile.PL [deleted file]
README [deleted file]
dist.ini [new file with mode: 0644]
lib/MooseX/InsideOut.pm

diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index b15f723..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,30 +0,0 @@
-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
diff --git a/Makefile.PL b/Makefile.PL
deleted file mode 100644 (file)
index bd2769b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-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;
-
diff --git a/README b/README
deleted file mode 100644 (file)
index b740eba..0000000
--- a/README
+++ /dev/null
@@ -1,40 +0,0 @@
-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.
-
diff --git a/dist.ini b/dist.ini
new file mode 100644 (file)
index 0000000..08f3efc
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,15 @@
+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]
index 5bcaa12..939dcc5 100644 (file)
@@ -2,13 +2,12 @@ use strict;
 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;
   
@@ -32,14 +31,6 @@ sub import {
 1;
 __END__
 
-=head1 NAME
-
-MooseX::InsideOut - inside-out objects with Moose
-
-=head1 VERSION
-
-Version 0.003
-
 =head1 SYNOPSIS
 
   package My::Object;
@@ -80,54 +71,4 @@ whose internals you either don't want to care about or aren't hash-based.
 
 =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