From 080fa421705f94af27891be98817c661cb5345fd Mon Sep 17 00:00:00 2001 From: franck cuny Date: Fri, 4 Jun 2010 12:25:31 +0200 Subject: switch to dzill --- Makefile.PL | 16 ---------------- README | 17 ----------------- dist.ini | 29 +++++++++++++++++++++++++++++ lib/Dancer/Session/PSGI.pm | 20 ++------------------ 4 files changed, 31 insertions(+), 51 deletions(-) delete mode 100644 Makefile.PL delete mode 100644 README create mode 100644 dist.ini diff --git a/Makefile.PL b/Makefile.PL deleted file mode 100644 index a022fdc..0000000 --- a/Makefile.PL +++ /dev/null @@ -1,16 +0,0 @@ -use inc::Module::Install; -name 'Dancer-Session-PSGI'; -all_from 'lib/Dancer/Session/PSGI.pm'; -readme_from 'lib/Dancer/Session/PSGI.pm'; - -# requires ''; - -tests 't/*.t'; - -build_requires 'Test::More'; -use_test_base; -auto_include; -#auto_include_deps; -author_tests 'xt'; -auto_set_repository; -WriteAll; diff --git a/README b/README deleted file mode 100644 index 91ea3a8..0000000 --- a/README +++ /dev/null @@ -1,17 +0,0 @@ -NAME - Dancer::Session::PSGI - - -SYNOPSIS - use Dancer::Session::PSGI; - -DESCRIPTION - Dancer::Session::PSGI is - -AUTHOR - franck cuny - -SEE ALSO -LICENSE - This library 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..f436315 --- /dev/null +++ b/dist.ini @@ -0,0 +1,29 @@ +name = Dancer-Session-PSGI +author = franck cuny +license = Perl_5 +copyright_holder = franck cuny +copyright_year = 2010 +version = 0.01 + +[@Git] +[@Filter] +bundle = @Basic + +[MetaConfig] +[MetaJSON] +[PkgVersion] +[PodSyntaxTests] +[PodCoverageTests] +[NoTabsTests] +[EOLTests] + +[MetaResources] +repository = git://github.com/franckcuny/dancer-session-psgi.git +bugtracker = http://rt.cpan.org/Public/Dist/Display.html?Name=Dancer::Session::PSGI +homepage = http://search.cpan.org/perldoc?Dancer::Session::PSGI + +[PodWeaver] +[AutoPrereq] +[ReadmeFromPod] +[CheckChangeLog] +[UploadToCPAN] diff --git a/lib/Dancer/Session/PSGI.pm b/lib/Dancer/Session/PSGI.pm index f82cb0d..c37c05d 100644 --- a/lib/Dancer/Session/PSGI.pm +++ b/lib/Dancer/Session/PSGI.pm @@ -1,5 +1,7 @@ package Dancer::Session::PSGI; +# ABSTRACT: Let Plack::Middleware::Session handle Dancer's session + use strict; use warnings; our $VERSION = '0.01'; @@ -33,11 +35,6 @@ sub destroy { } 1; -__END__ - -=head1 NAME - -Dancer::Session::PSGI - Let Plack::Middleware::Session handle session =head1 SYNOPSIS @@ -80,16 +77,3 @@ Now, your two applications can share the same session informations. =head1 DESCRIPTION Dancer::Session::PSGI let you use C as backend for your sessions. - -=head1 AUTHOR - -franck cuny Efranck@lumberjaph.netE - -=head1 SEE ALSO - -=head1 LICENSE - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - -=cut -- cgit 1.4.1