[Moose-commits] r7885 - in MooseX-InsideOut/trunk: . lib/MooseX

hdp at code2.0beta.co.uk hdp at code2.0beta.co.uk
Sat Apr 4 06:43:32 BST 2009


Author: hdp
Date: 2009-04-03 22:43:32 -0700 (Fri, 03 Apr 2009)
New Revision: 7885

Added:
   MooseX-InsideOut/trunk/dist.ini
Removed:
   MooseX-InsideOut/trunk/MANIFEST
   MooseX-InsideOut/trunk/Makefile.PL
   MooseX-InsideOut/trunk/README
Modified:
   MooseX-InsideOut/trunk/lib/MooseX/InsideOut.pm
Log:
dzil-ize

Deleted: MooseX-InsideOut/trunk/MANIFEST
===================================================================
--- MooseX-InsideOut/trunk/MANIFEST	2009-04-02 15:10:44 UTC (rev 7884)
+++ MooseX-InsideOut/trunk/MANIFEST	2009-04-04 05:43:32 UTC (rev 7885)
@@ -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

Deleted: MooseX-InsideOut/trunk/Makefile.PL
===================================================================
--- MooseX-InsideOut/trunk/Makefile.PL	2009-04-02 15:10:44 UTC (rev 7884)
+++ MooseX-InsideOut/trunk/Makefile.PL	2009-04-04 05:43:32 UTC (rev 7885)
@@ -1,16 +0,0 @@
-use inc::Module::Install 0.75;
-
-name     'MooseX-InsideOut';
-all_from 'lib/MooseX/InsideOut.pm';
-author   'Hans Dieter Pearcey <hdp at pobox.com>';
-
-build_requires 'Test::More';
-
-requires 'Moose'                         => '0.35';
-requires 'Hash::Util::FieldHash::Compat' => 0;
-requires 'Task::Weaken'                  => 0;
-
-auto_install;
-
-WriteAll;
-

Deleted: MooseX-InsideOut/trunk/README
===================================================================
--- MooseX-InsideOut/trunk/README	2009-04-02 15:10:44 UTC (rev 7884)
+++ MooseX-InsideOut/trunk/README	2009-04-04 05:43:32 UTC (rev 7885)
@@ -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.
-

Added: MooseX-InsideOut/trunk/dist.ini
===================================================================
--- MooseX-InsideOut/trunk/dist.ini	                        (rev 0)
+++ MooseX-InsideOut/trunk/dist.ini	2009-04-04 05:43:32 UTC (rev 7885)
@@ -0,0 +1,15 @@
+name    = MooseX-InsideOut
+version = 0.003
+license = Perl_5
+author  = Hans Dieter Pearcey <hdp at cpan.org>
+copyright_holder = Hans Dieter Pearcey <hdp at cpan.org>
+
+[Prereq]
+Class::MOP = 0.80
+Moose = 0.73
+Hash::Util::FieldHash::Compat = 0
+Task::Weaken = 0
+
+[@Classic]
+
+[PodPurler]

Modified: MooseX-InsideOut/trunk/lib/MooseX/InsideOut.pm
===================================================================
--- MooseX-InsideOut/trunk/lib/MooseX/InsideOut.pm	2009-04-02 15:10:44 UTC (rev 7884)
+++ MooseX-InsideOut/trunk/lib/MooseX/InsideOut.pm	2009-04-04 05:43:32 UTC (rev 7885)
@@ -2,13 +2,12 @@
 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 @@
 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 @@
 
 =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




More information about the Moose-commits mailing list