shorter pod lists
[catagits/Catalyst-Plugin-Session-State-Stash.git] / lib / Catalyst / Plugin / Session / State / Stash.pm
index 013ccec..6424cd7 100644 (file)
@@ -1,4 +1,6 @@
 package Catalyst::Plugin::Session::State::Stash;
+# ABSTRACT: Maintain session IDs using the stash
+
 use Moose;
 use 5.008;
 use MRO::Compat;
@@ -6,7 +8,7 @@ use namespace::autoclean;
 
 extends 'Catalyst::Plugin::Session::State';
 
-our $VERSION = '0.14';
+our $VERSION = '0.15';
 
 has _deleted_session_id => ( is => 'rw' );
 has _prepared => ( is => 'rw' );
@@ -91,10 +93,6 @@ __END__
 
 =pod
 
-=head1 NAME
-
-Catalyst::Plugin::Session::State::Stash - Maintain session IDs using the stash
-
 =head1 SYNOPSIS
 
  use Catalyst qw/Session Session::State::Stash Session::Store::Foo/;
@@ -175,8 +173,7 @@ For example, you could stick this in F<MyApp.pm>:
 =head1 BUGS
 
 You can't delete a session then create a new one. If this is important to you,
-patches welcome. It is not important to me and fixing this for completeness
-is pretty low on my list of priorities.
+patches welcome!
 
 =head1 CAVEATS
 
@@ -193,22 +190,15 @@ loading, as when saving, the ID will already be on the stash.
 L<Catalyst>, L<Catalyst::Plugin::Session>, L<Catalyst::Plugin::Session::State>,
 L<Catalyst::Plugin::Session::State::Cookie> (what you probably want).
 
-=head1 AUTHORS
-
-James Laver E<lt>perl -e 'printf qw/%s@%s.com cpan jameslaver/'E<gt>
-
 =head1 CONTRIBUTORS
 
-This module is derived from L<Catalyst::Plugin::Session::State::Cookie> code.
-
-Thanks to anyone who wrote code for that.
+=begin :list
 
-Thanks to Kent Fredric for a patch for nested keys
+* This module is derived from L<Catalyst::Plugin::Session::State::Cookie> code.
+  Thanks to anyone who wrote code for that.
 
-=head1 COPYRIGHT
+* Thanks to Kent Fredric for a patch for nested keys
 
-This program is free software, you can redistribute it and/or modify it
-under the same terms as Perl itself.
+=end :list
 
 =cut
-