Checking in changes prior to tagging of version 0.12.
[catagits/Web-Session.git] / lib / Plack / Session / Store / Cache.pm
index 76f1c36..e127118 100644 (file)
@@ -2,7 +2,7 @@ package Plack::Session::Store::Cache;
 use strict;
 use warnings;
 
-our $VERSION   = '0.03';
+our $VERSION   = '0.12';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util qw[ blessed ];
@@ -33,7 +33,7 @@ sub store {
     $self->cache->set($session_id => $session);
 }
 
-sub cleanup {
+sub remove {
     my ($self, $session_id) = @_;
     $self->cache->remove($session_id);
 }
@@ -73,7 +73,7 @@ L<Cache> interface. This offers a lot of flexibility due to the many
 excellent L<Cache>, L<Cache::Cache> and L<CHI> drivers available.
 
 This is a subclass of L<Plack::Session::Store> and implements
-it's full interface.
+its full interface.
 
 =head1 METHODS