From: hdp Date: Sat, 4 Apr 2009 05:43:32 +0000 (+0000) Subject: dzil-ize X-Git-Tag: 0.100~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-InsideOut.git;a=commitdiff_plain;h=fff3c901f8a6730647251934b91f86dc9847aa54 dzil-ize --- diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 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 index bd2769b..0000000 --- a/Makefile.PL +++ /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 '; - -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 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 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 +copyright_holder = Hans Dieter Pearcey + +[Prereq] +Class::MOP = 0.80 +Moose = 0.73 +Hash::Util::FieldHash::Compat = 0 +Task::Weaken = 0 + +[@Classic] + +[PodPurler] diff --git a/lib/MooseX/InsideOut.pm b/lib/MooseX/InsideOut.pm index 5bcaa12..939dcc5 100644 --- a/lib/MooseX/InsideOut.pm +++ b/lib/MooseX/InsideOut.pm @@ -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<< >> - -=head1 BUGS - -Please report any bugs or feature requests to C, or through -the web interface at L. 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 - -=item * AnnoCPAN: Annotated CPAN documentation - -L - -=item * CPAN Ratings - -L - -=item * Search CPAN - -L - -=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