diff options
author | franck cuny <franck@lumberjaph.net> | 2010-06-04 12:25:31 +0200 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2010-06-04 12:25:45 +0200 |
commit | 080fa421705f94af27891be98817c661cb5345fd (patch) | |
tree | 7538ad543020dbef80223bf3fd6df6eceec98269 | |
parent | POD and better use of psgix (diff) | |
download | dancer-session-psgi-master.tar.gz |
switch to dzill master
-rw-r--r-- | Makefile.PL | 16 | ||||
-rw-r--r-- | README | 17 | ||||
-rw-r--r-- | dist.ini | 29 | ||||
-rw-r--r-- | lib/Dancer/Session/PSGI.pm | 20 |
4 files changed, 31 insertions, 51 deletions
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 <franck@lumberjaph.net> - -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 <franck@lumberjaph.net> +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<Plack::Middleware::Session> as backend for your sessions. - -=head1 AUTHOR - -franck cuny E<lt>franck@lumberjaph.netE<gt> - -=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 |