=================================================================== RCS file: /cvs/todotxt/Text-Todo/lib/Text/Todo/Entry.pm,v retrieving revision 1.18 retrieving revision 1.24 diff -u -r1.18 -r1.24 --- todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/11 01:30:24 1.18 +++ todotxt/Text-Todo/lib/Text/Todo/Entry.pm 2010/01/19 18:53:36 1.24 @@ -1,6 +1,6 @@ package Text::Todo::Entry; -# $RedRiver: Entry.pm,v 1.16 2010/01/10 22:49:53 andrew Exp $ +# $AFresh1: Entry.pm,v 1.23 2010/01/18 03:04:48 andrew Exp $ use warnings; use strict; @@ -9,16 +9,19 @@ use Class::Std::Utils; use List::Util qw/ first /; -use version; our $VERSION = qv('0.0.1'); +use version; our $VERSION = qv('0.1.0'); { - my %text_of; - my %tags_of; - my %priority_of; - my %completion_status_of; - my %known_tags_of; + my @attr_refs = \( + my %text_of, + my %tags_of, + my %priority_of, + my %completion_status_of, + my %known_tags_of, + ); + # XXX Should the completion (x) be case sensitive? my $priority_completion_regex = qr{ ^ \s* @@ -172,7 +175,7 @@ $new =~ s/$priority_completion_regex//xms; if ( $self->done ) { - if ($self->done !~ /^x/ixms) { + if ( $self->done !~ /^x/ixms ) { push @new, 'x'; } push @new, $self->done; @@ -219,6 +222,13 @@ return $completion_status_of{$ident}; } + sub DESTROY { + my ($self) = @_; + my $ident = ident $self; + foreach my $attr_ref (@attr_refs) { + delete $attr_ref->{$ident}; + } + } } 1; # Magic true value required at end of module __END__ @@ -233,7 +243,7 @@ Since the $VERSION can't be automatically included, here is the RCS Id instead, you'll have to look up $VERSION. - $Id: Entry.pm,v 1.18 2010/01/11 01:30:24 andrew Exp $ + $Id: Entry.pm,v 1.24 2010/01/19 18:53:36 andrew Exp $ =head1 SYNOPSIS